对于使用 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);