P
peacekeeper
Unregistered / Unconfirmed
GUEST, unregistred user!
前面已经有人讲过如何填写浏览器中的表格了。但是,
所举的例子不够全面。例子如下:
procedure TmainForm.BB_writeClick(Sender: TObject);
var
doc:IHTMLDocument2;
all:IHTMLElementCollection;
item,itemclevariant;
I:Integer;
begin
try
doc:=WB_main.Document as IHTMLDocument2;
all:=doc.all;
item:=all.tags('INPUT');
itemc:=item.item(0);
itemc.innerText:=sg_input.Cells[1,1];
itemc:=item.item(1);
itemc.innerText:=sg_input.Cells[1,2];
except
end;
end;
在上面的例子中,怎样知道TWebBrowser控件WB_main所
指的网页上有多少个INPUT???以及每个INPUT的TYPE???
怎样知道每个INPUT的name呢???
好象这些关于接口IHTMLDocument2的资料,在Delphi 5
的帮助中找不到!
所举的例子不够全面。例子如下:
procedure TmainForm.BB_writeClick(Sender: TObject);
var
doc:IHTMLDocument2;
all:IHTMLElementCollection;
item,itemclevariant;
I:Integer;
begin
try
doc:=WB_main.Document as IHTMLDocument2;
all:=doc.all;
item:=all.tags('INPUT');
itemc:=item.item(0);
itemc.innerText:=sg_input.Cells[1,1];
itemc:=item.item(1);
itemc.innerText:=sg_input.Cells[1,2];
except
end;
end;
在上面的例子中,怎样知道TWebBrowser控件WB_main所
指的网页上有多少个INPUT???以及每个INPUT的TYPE???
怎样知道每个INPUT的name呢???
好象这些关于接口IHTMLDocument2的资料,在Delphi 5
的帮助中找不到!