delphi 网页提交按钮执行点击事件
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 网页提交按钮执行点击事件相关的知识,希望对你有一定的参考价值。
- 遍历即可实现,下列代码仅供参考:
- 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
- begin
- T.all.item(i).click;
- Exit;
- end;
- end;
- end;
- end;
http://blog.csdn.net/yanjiaye520/article/details/7942366
以上是关于delphi 网页提交按钮执行点击事件的主要内容,如果未能解决你的问题,请参考以下文章
求C# winform中点击按钮执行网页JS提交表单代码实现~~!
如何让一个按钮自动触发,自动执行onclick鼠标单击事件. 默认已点击.