1

对于使用 IE 实例的应用程序,我每隔几秒钟就使用 Ajax 检查我的 Internet 连接。但由于带宽低,我的 Internet Explorer 崩溃了。

可以遵循哪些最佳实践来检查 Internet 连接,以防止 Internet Explorer 崩溃并提高性能?

我正在使用以下代码检查我的互联网连接。

其解释如下: -

http://tomriley.net/blog/archives/111我从那里得到 jquery 文件。

(function ($) {

      $.fn.checkNet = function (intCheckInterval, strCheckURL) {
          if (typeof (intCheckInterval) === 'undefined') {
              var intCheckInterval = 5
          } if (typeof (strCheckURL) === 'undefined') {
              var strCheckURL = window.location
          } else if (strCheckURL.indexOf('http') === -1) {
              var strCheckURL = 'http://' + strCheckURL
          } intCheckInterval = intCheckInterval * 1000; function doRequest(strCheckURL) {
              $.ajax({ url: strCheckURL, cache: false, success: function () {
                  if ($('#netWarn').length) {
                      $('#netWarn').fadeOut()
                  } $('.tempDisabled').removeAttr('disabled').removeClass('tempDisabled')
              }, error: function () {
                  if (!$('#netWarn').length) {


                      $('body').prepend('<p id="netWarn">No internet connection detected, some features will be re-enabled when a connection is detected. </p>'); $('#netWarn').fadeIn()

                  }

              }
              })
          } setInterval(function () {
              doRequest(strCheckURL)
          }, intCheckInterval)
      }
})(jQuery);  
4

1 回答 1

0

我的插件接受请求之间的时间长度的参数。因此,如果您希望请求之间有 10 秒的间隔,请使用以下代码调用它:

$.fn.checkNet(10);

...在您包含插件之后。我最近上传了一个新版本,它的工作效率更高。

于 2012-07-05T20:25:04.527 回答