页面 href jsp 如何触发
页面源代码为<a href="javascript:;" class="button btn-orange btn-large" onclick="PageGetSpace();return false;" id="js_pingjia_btn">评价</a>通过什么什么来触发啊?
试过
$oClicks = _IETagNameGetCollection($oIE, "a")
For $oClick In $oClicks
If $oClick.outertext= "评价" Then
$oClick.click()
EndIf
Next
但click 的是页面上的其他元素,郁闷啊 If $oClick.id= "js_pingjia_btn" Then
换成这样。 或者这样:$oIE.document.parentWindow.eval("PageGetSpace();return false;") 回复 3# jtw
能给我发一下 关于这个的$oIE.document.parentWindow.eval的使用方法的例子吗,刚接触autoit,不太会查找资料,谢谢 http://www.autoitx.com/forum.php?mod=viewthread&tid=25916&highlight=JS
http://www.autoitx.com/forum.php?mod=viewthread&tid=29236&highlight=JS
页:
[1]