jQuery1.5升级日志 onreadystatechange

刚刚上班,发现jQuery 又升级了,而且解决了很多问题就将我的系统升级到了1.5

发现了如下的问题

jquery-1.5.js  文件的7142行

 xhr.onreadystatechange //光标在此提示xhr不支持属性或者方法

 

在网上找了很长时间没有发现解决方法,最后看看他的代码发现这是unload函数内出现的问题而我的项目中

使用了此函数可能问题出在这。

方法如下:

function window.unload()...

 

在网上查找jQuery关于unload的使用方法,在他的官网上查到了下面的方法:

$(document).ready(function() {
if (!isSVGControlInstalled()) {
window.navigate("/Home/SvgNotInstall");
return;
}

$(window).unload(function(event) {
$.getJSON("/Logout/Abandon");
});

});

 

修改后执行,发现OK!注意这种方法在1.4.4上好用。

你可能感兴趣的:(jQuery1.5升级日志 onreadystatechange)