如果网页提交按钮没有名字,应该怎么点击或提交表单呢
本帖最后由 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"> </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属性的,怎样提交啊? 照此参照:
#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,,,去看看吧. $oInputs = _IETagNameGetCollection ($oIE, "INPUT")
For $oInput In $oInputs
if $oInput.value = "保存" then
_IEAction ($oInput, "click")
EndIf
Next
这个更简单 谢谢两位。 收藏一下。 我也收藏学习,感谢楼上 这个帖子比较好啊
页:
[1]