兼容性问题
获得xhr对象
非ie:new XMLHttpRequest()
ie:new ActiveXObject()
写法:
if(window.XMLHttpRequest)
{
var xhr=new XMEHttpRequest();
}else{
var xhr=new ActiveXObject();
}
Ajax ajax原生对象-xhr对象兼容性写法
最新推荐文章于 2022-02-17 14:30:49 发布