摘要: // 使用原生js 封装ajax // 兼容xhr对象 function createXHR(){ if(typeof XMLHttpRequest != "undefined"){ // 非IE6浏览器 return new XMLHttpRequest(); }else if(typeof ActiveXObject != "undefined"){ // IE6浏览器 ... 阅读全文
posted @ 2015-12-28 11:42 Vtzf、 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 创建XMLHttpRequest对象与之前众多DOM操作一样,创建XHR对象也具有兼容性问题:IE6及之前的版本使用ActiveXObject,IE7之后及其它浏览器使用XMLHttpRequest不但IE6及其之前的版本将XHR作为一个ActiveXObject运行,而且还存在众多版本:一开始是M... 阅读全文
posted @ 2015-12-28 11:39 Vtzf、 阅读(300) 评论(0) 推荐(0) 编辑