本帖最后由 godsky 于 2014-7-14 21:10 编辑
在HELP文件里面,搜索_IEAction,然后里面有2个例子,看第二个例子,代码如下: #include <IE.au3>
$oIE = _IE_Example ("form")
$oSubmit = _IEGetObjByName ($oIE, "submitExample")
$hwnd = _IEPropertyGet($oIE, "hwnd")
_IEAction ($oSubmit, "focus")
ControlSend($hwnd, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{Enter}")
; Wait for Alert window, then click on OK
WinWait("Windows Internet Explorer", "ExampleFormSubmitted")
ControlClick("Windows Internet Explorer", "ExampleFormSubmitted", "[CLASS:Button; TEXT:OK; Instance:1;]")
_IELoadWait ($oIE)
我想根据他来执行我的代码:
下面我把详细的IE源码贴出来
<input type="button" name="sendSheet" title="确定" onclick="tthSheetTransferReply();" />
<!--<input type="button" name="resetSheet" title="返回" onclick="javascript:history.back(1);"/> -->
点这个BUTTON之后,弹出一个IE的确认窗口,如图:
必须确定才可以继续执行程序,否则程序不继续执行。
但是根据例子的方法不能实现,求解 |