|
悬赏10金钱未解决
#include<IE.au3>
Run("C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Chrome\Application\chrome.exe http://www.baidu.com/")
Sleep(10000)
$oIE = _IEAttach('百度一下,你就知道 - Google Chrome', 'Title')
MsgBox(4096,"aa",@Error)
Sleep(5000)
js(FileRead("jquery-1.9.1.au3"))
js("$('#kw').val('hello')")
js("$('#su').click()")
Func js($script)
$oIE.document.parentWindow.execscript($script)
EndFunc
为什么返回的值为 @Error=7(不匹配)
@Error 0 ($_IEStatus_Success) = 无错误
5 ($_IEStatus_InvalidValue) = 无效值
7 ($_IEStatus_NoMatch) = 不匹配
高手帮忙看一下 |
|