Web浏览器控制,检测互联网连接

发布于 2024-09-26 00:58:54 字数 208 浏览 5 评论 0原文

这是我的代码场景, 我在网络浏览器控件中显示 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹泡泡o 2024-10-03 00:58:54

jQuery ajax 方法允许您定义一个错误回调,如果用户断开连接(或由于其他原因),该回调应该会被触发...

$.ajax({
  url: "test.html",
  cache: false,
  success: function(html){
    $("#results").append(html);
  },
  error: function(XMLHttpRequest, textStatus, errorThrown){
    alert("oh crap, an error: " + textStatus);
  }
});

有关更多信息: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)...

$.ajax({
  url: "test.html",
  cache: false,
  success: function(html){
    $("#results").append(html);
  },
  error: function(XMLHttpRequest, textStatus, errorThrown){
    alert("oh crap, an error: " + textStatus);
  }
});

For more info: http://api.jquery.com/jQuery.ajax/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文