A
allen72
Unregistered / Unconfirmed
GUEST, unregistred user!
多个frames网页的代码可以
Memo1.Text:= wb.oleobject.document.
documentelement.document.frames.item(i).document.documentelement.OuterHtml;
一个frames的点链接可以:
doc:=webbrowser1.Document as IHTMLDocument2;
all:=doc.Get_links;
len:=all.length;
for l:=0 to len-1 do
begin
item:=all.item(l,varempty);
if item.href= 'http://www.yahoo.com' then
item.click
end;
多frames网页的链接怎么找出来.怎么click 它???
Memo1.Text:= wb.oleobject.document.
documentelement.document.frames.item(i).document.documentelement.OuterHtml;
一个frames的点链接可以:
doc:=webbrowser1.Document as IHTMLDocument2;
all:=doc.Get_links;
len:=all.length;
for l:=0 to len-1 do
begin
item:=all.item(l,varempty);
if item.href= 'http://www.yahoo.com' then
item.click
end;
多frames网页的链接怎么找出来.怎么click 它???