ie中查询按钮怎么点
网址是http://47.52.60.144:2017/<input name="submit" class="submit" type="submit" value="查询"/>
这个查询按钮怎么才能点到 这个网站干嘛的{:face (356):} 我是这样点的,你自己测试
#include <IE.au3>
$oIE = _IECreate("http://www.360kan.com/dianying/index.html")
_IELinkClickByText ($oIE, "喜剧",1) 回复 3# xzf680
#include <IE.au3>
$oIE = _IECreate("http://47.52.60.144:2017/ ")
_IELinkClickByText ($oIE, "查询",1)
没反应,不知道为啥,难道和浏览器有关系 回复 3# xzf680
换了台电脑还是没有用 #include <IE.au3>
$oIE = _IECreate("http://47.52.60.144:2017/")
$aGet = $oIE.document.GetElementsByTagName("input")
For $i = 0 To $aGet.length
If $aGet($i).name = "queryID" Then $aGet($i).value = "8888"
If $aGet($i).name = "submit" Then $aGet($i).click()
Next 回复 6# 1361739590
运行这段代码会出现这样错误
>运行:(3.3.7.15):D:\autoit3\autoit3\autoit3_x64.exe "D:\autoit3\autoit3\SciTe\iets.au3"
D:\autoit3\autoit3\SciTe\iets.au3 (7) : ==> ????? "With" ????.:
If $aGet($i).name = "queryID" Then $aGet($i).value = "8888"
If $aGet($i)^ ERROR
还是不会点击查询这个按钮 3.3.7.15 这个版本太老了,($i) 改成 [$i] 试试? 回复 8# 1361739590
新版本是多少的 回复 8# 1361739590
>运行:(3.3.7.15):D:\autoit3\autoit3\autoit3_x64.exe "D:\autoit3\autoit3\SciTe\iets.au3"
D:\autoit3\autoit3\SciTe\iets.au3 (7) : ==> "If" ??????? "Then" ???.:
If $aGet[$i].name = "queryID" Then $aGet[$i].value = "8888"
If $aGet^ ERROR
还是一样 回复 8# 1361739590
>运行:(3.3.7.15):D:\autoit3\autoit3\autoit3_x64.exe "D:\autoit3\autoit3\SciTe\iets.au3"
D:\autoit3\autoit3\SciTe\iets.au3 (7) : ==> "If" ??????? "Then" ???.:
If $aGet[$i].name = "queryID" Then $aGet[$i].value = "8888"
If $aGet^ ERROR
还是一样 v3.3.14.2就可以了。 高手啊,果然是版本问题,搞了一天了,浏览器都换了几个版本,非常感谢 网页快捕是好东西啊。。。
#include <IE.au3>
$oIE = _IECreate("http://47.52.60.144:2017/","url")
$Ele = _IEGetObjByName($oIE,"queryID")
_IEFormElementSetValue($Ele,"1234567");此处输入查询码
$Ele1 = _IEGetObjByName($oIE,"submit")
_IEAction($Ele1,"click");按下查询
回复 14# 229989799
果然是好东西,收藏了
页:
[1]