由于互联网连接问题或从网站加载页面我在Internet Explorer for XP或 Windows 7或10中显示错误,如“网页无法显示”.
需要告诉我网页是否成功加载或有问题所以我可以决定下一步是什么.
解决方法 有很多方法可以检查网页是否已加载,或者您是否有来自Internet连接问题或网站服务器的错误第一种检查方法是针对Xp或windows 7或10的所有Internet Explorer版本
On Error Resume Next 'clean the cookies of Internet explorer firstCreateObject("WScript.Shell").Run "rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 2",False WScript.Sleep 1000'open the webpage Set objIE = wscript.CreateObject("InternetExplorer.Application") objIE.visible = 0 objIE.Toolbar = 0 objIE.statusbar=0 objIE.Navigate "http://www.muslimpro.com/Prayer-times-Mecca-Saudi-arabia-104515" 'change "https" to "http" While objIE.Busy Or objIE.ReadyState <> 4 : WScript.Sleep 100 : Wend'check webpageIf objIE.Locationname=objIE.LocationURL ThenMsgBox "webpage dID not loaded try again"ElseIf objIE.Locationname <> objIE.LocationURL ThenMsgBox "webpage loaded successfully "End IfobjIE.Quit WScript.Quit
重要说明:您必须将URL httpS更改为http.
总结以上是内存溢出为你收集整理的如何检查网页是否已加载或我在VBScript中的XP和Windows 7和10 Internet Explorer有错误全部内容,希望文章能够帮你解决如何检查网页是否已加载或我在VBScript中的XP和Windows 7和10 Internet Explorer有错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)