Ajax兼容性问题
Posted web_study
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax兼容性问题相关的知识,希望对你有一定的参考价值。
对于IE7及以上直接使用 XMLHttpRequest 就行,但对于过老版本IE建议直接提示用户下载新版浏览器更佳。或者用以下代码兼容IE6:
function CreateXHR() { if(XMLHttpRequest) { return new XMLHttpRequest; } else { return new ActiveXObject("Msxml2.XMLHTTP");//兼容老IE浏览器 } } var xhr = CreateXHR() xhr.open("get", "a.txt"); xhr.onreadystatechange = function() { if(xhr.readyState == 4 && xhr.status == 200) { rs = xhr.responseText }
} xhr.send(null)
以上是关于Ajax兼容性问题的主要内容,如果未能解决你的问题,请参考以下文章