怎样获得TWebBrowse中的网页中的对象(例如网页中的按钮对象)(50分)

  • 主题发起人 主题发起人 jetcard
  • 开始时间 开始时间
程序中代码:“wb1.OleObject.document.form1.uid.Text:=''”
(其中uid是一个按钮对象)
出现以下错误:
"the text method don't support automation object"不理解?
有没有其他方法引用uid 的text属性
 
更正
uid应为vb中的text对象
 
得到button:

var
i: integer;
t:OleVariant;
begin
t := WebBrowser1.Document;
for i := 0 to t.all.length - 1 do
begin
if t.all.item(i).tagName = 'INPUT' then
begin
if t.all.item(i).type = 'submit' then
//或者type='button',type='cancel',大小写自己注意
begin
t.all.item(i).click;
exit;
end;
end;
end;
end;
 
dreamtiger,tagname是否包含document中的所有对象
(form对象 and element(表单域))?
如果是,那么form 和 element的主从关系将怎样区分?
 
接受答案了.
 
后退
顶部