Web浏览器控制,检测互联网连接
这是我的代码场景, 我在网络浏览器控件中显示 html 页面。内容将从某些 RSS url 动态加载(使用 JQuery 从 URL 加载内容)并显示在 WB 中。我的问题是,当通过滚动文本完成循环时,我必须检查“互联网连接”。我尝试使用“navigator.onLine”,它在 html 页面中运行良好,但在加载到 Web 浏览器控件中时不起作用,即使互联网断开连接,它也会返回“true”。
Here is my code scenario,
I display html page in webbrowser control. The content will be loaded from some RSS url dynamically (used JQuery to load the content from URL) and displayed in WB. My problem is, i have to check for the "Internet Connectivity" when a loop is completed by scrolling text. I tried using "navigator.onLine", which is working well in html page but not working when loaded into the Web browser control, it returned "true" even internet disconnected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery ajax 方法允许您定义一个错误回调,如果用户断开连接(或由于其他原因),该回调应该会被触发...
有关更多信息:http://api.jquery.com/jQuery.ajax/
The jQuery ajax method lets you define an error callback, which should get hit if the user has dropped his connection (or for other reasons)...
For more info: http://api.jquery.com/jQuery.ajax/