A
andy263
Unregistered / Unconfirmed
GUEST, unregistred user!
<input type="text" name="xxx" size="20">
对于网页这种连接 我们可以用如下方式实现填写内容。
var
o: Olevariant;
all: IHTMLElementCollection;
item: IHTMLElement;
begin
o := WebBrowser1.oleobject.document.all.item('xxx', 0);
o.value:='myValue';
[red]我的问题是[/red]
如果网页中是这种文本框(实际上就是邮箱中选择附件的部分)
<input type="file" name="xxx" size="20">
代码应该怎么写?
对于网页这种连接 我们可以用如下方式实现填写内容。
var
o: Olevariant;
all: IHTMLElementCollection;
item: IHTMLElement;
begin
o := WebBrowser1.oleobject.document.all.item('xxx', 0);
o.value:='myValue';
[red]我的问题是[/red]
如果网页中是这种文本框(实际上就是邮箱中选择附件的部分)
<input type="file" name="xxx" size="20">
代码应该怎么写?