当前位置 : 主页 > 编程语言 > c++ >

XMLHttpRequest对象的创建问题

来源:互联网 收集:自由互联 发布时间:2021-07-03
XMLHttpRequest对象比较特殊,不同的浏览器都有其不同的建法 var xmlhttp;if(window.XMLHttpRequest){ xmlhttp=new XMLHttpRequest();现在普遍的浏览器建发}else{ xmlhttp=new ActiveXObjies("Microssoft.XMLHTTP");//IE7一下
XMLHttpRequest对象比较特殊,不同的浏览器都有其不同的建法
var xmlhttp;
if(window.XMLHttpRequest){
    xmlhttp=new XMLHttpRequest();现在普遍的浏览器建发
}
else{
    xmlhttp=new ActiveXObjies("Microssoft.XMLHTTP");//IE7一下的
}
网友评论