谁能说下这个网页操作是什么意思
Webbrower1.Document.parentWindow.execScript("QOM.AppList.clickList(347,this)", "javascript")
这个.parentWindow.execScript是不是就是执行网页中定义好的一些javascript类的函数???
那么
Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
pDisp.Document.parentWindow.execScript "window.alert=null;"
pDisp.Document.parentWindow.execScript "window.confirm=null;"
pDisp.Document.parentWindow.execScript "window.prompt=null;"
pDisp.Document.parentWindow.execScript "window.showModalDialog=null;"
pDisp.Document.parentWindow.execScript "window.showModalessDialog=null;"
pDisp.Document.parentWindow.execScript "window.open=null;"
End Sub
这些阻止网页的弹窗是吗?window.alert=null;都是什么命令呢??
[解决办法]