郁闷
阿狗,说的只能解决一部分问题,正如楼上兄弟说的如果
的是在onclick时间中打开URL的,StatusText显示的是提示之类
那么NEWURL就不正确了.现在关键就是得到用户点击的URL值,我下面的程序
取到了页面上所有的URL值,有什么办法只取到当前用户点中的URL??
var
doc:IHTMLDocument2;
all:IHTMLElementCollection;
len,i:integer;
item:OleVariant;
begin
Cancel:=true;
doc:=WebBrowser1.document as IHTMLdocument2;
begin
ppDisp := WebBrowser1.Application;
doc:=WebBrowser1 .Document as IHTMLDocument2;
all:=doc.links;
len:=all.length;
for i:=0 to len-1 do begin
item:=all.item(i,varEmpty);
mmo1.lines.add(item.href);
end;
e-,兄弟,你说的办法我程序根本什么网页都打不开,更加郁闷