为什么没有_IEFormElementGetObjById函数
要对某个网页进行操作,查看了该网页的源码,发现只有form id 而没有 form name,运行的时候程序提示没有找到匹配的表单,--> IE.au3 V2.4-0 Warning from function _IEFormElementGetObjByName, $_IEStatus_NoMatch。为什么没有_IEFormElementGetObjById函数,对于只有form id 而没有 form name的网页,怎么进行表单的操作?谢谢各位! 楼主试试这个
#include <IE.au3>
$oIE = _IECreate ("http://www.autoitscript.com")
$oForms = _IEFormGetCollection ($oIE)
MsgBox(0, "Forms Info", "There are " & @extended & " forms on this page")
For $oForm In $oForms
MsgBox(0, "Form Info", $oForm.name)
Next 回复 2# sango
谢谢帮助!我试了一下,msgbox的结果是两个0,是不是说这个网页确实不存在form name? 本帖最后由 papapa314 于 2011-2-10 17:26 编辑
#include <IE.au3>
$oIE = _IECreate ("网页")
$oForms = _IEFormGetCollection ($oIE)
MsgBox(0, "Forms Info", "There are " & @extended & " forms on this page")
For $oForm In $oForms
MsgBox(0, "Form Info", $oForm.id)
Next
能得到form的id,跟网页源码里的一样,就是没有name
页:
[1]