码迷,mamicode.com
首页 > Windows程序 > 详细

delphi 网页提交按钮执行点击事件

时间:2016-03-13 19:59:58      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:

 

[delphi] view plain copy
 
 print?
  1. 遍历即可实现,下列代码仅供参考:  
  2. var  
  3.   i: integer;  
  4.   T: OleVariant;  
  5. begin  
  6.   T := WebBrowser1.Document;  
  7.   for i := to T.all.Length - do  
  8.   begin  
  9.     if T.all.item(i).tagName = ‘INPUT‘ then  
  10.     begin  
  11.       if T.all.item(i).type = ‘submit‘ then  
  12.       begin  
  13.         T.all.item(i).click;  
  14.         Exit;  
  15.       end;  
  16.     end;  
  17.   end;  
  18. end;  


http://blog.csdn.net/yanjiaye520/article/details/7942366

delphi 网页提交按钮执行点击事件

标签:

原文地址:http://www.cnblogs.com/findumars/p/5272647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!