chenbo2003 发表于 2010-5-23 10:08:07

如果网页提交按钮没有名字,应该怎么点击或提交表单呢

本帖最后由 chenbo2003 于 2010-5-26 20:13 编辑

如果网页提交按钮没有名字,应该怎么点击或提交表单呢?如下:
            <table width="160" border="0" cellspacing="0" cellpadding="0" class="gray12">
            <tr>
                <tdwidth="72" height="20" align="center">
                  <input type="submit" value='保存'>
                </td>
                <td width="16">&nbsp;</td>
                <tdwidth="72" height="20" align="center">
                <input type="reset" value='重置'>
                </td>
            </tr>
                <tr><td id="msgarea" height="70" colspan="3" style="color:red;font-size:12px"></td></tr>
            </table>
这个保存按钮是没有name属性的,怎样提交啊?

deliy 发表于 2010-5-23 14:51:48

照此参照:

#include <IE.au3>

$oIE = _IECreate(" http://mail.163.com/",0,1,1,1 )

_IELoadWait ($oIE)

$oInputs = _IETagNameGetCollection ($oIE, "INPUT")

For $oInput In $oInputs                                 ;在$oInputs里面有些什么TagName?
if $oInput.name = "username" then               ;如果TagName的名称是"username"
       $oInput.value="您的用户名"                      ;那么修改TagName的值为用户名
EndIf
Next

原文地址:http://www.autoitx.com/thread-15511-1-1.html,,,去看看吧.

deliy 发表于 2010-5-23 14:56:20

$oInputs = _IETagNameGetCollection ($oIE, "INPUT")
For $oInput In $oInputs
if $oInput.value = "保存" then
       _IEAction ($oInput, "click")
EndIf
Next

这个更简单

chenbo2003 发表于 2010-5-23 16:05:41

谢谢两位。

dajun 发表于 2010-5-23 18:11:12

收藏一下。

qqmmcc 发表于 2010-5-24 01:02:48

我也收藏学习,感谢楼上

dingzz3 发表于 2020-11-26 08:15:34

这个帖子比较好啊
页: [1]
查看完整版本: 如果网页提交按钮没有名字,应该怎么点击或提交表单呢