首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

xml=new ActiveXObject("Microsoft.XMLHTTP")疏失

2013-09-21 
xmlnew ActiveXObject(Microsoft.XMLHTTP)出错我在写一个js的脚本,我这么写xmlnew ActiveXObject(Mic

xml=new ActiveXObject("Microsoft.XMLHTTP")出错
我在写一个js的脚本,我这么写
xml=new ActiveXObject("Microsoft.XMLHTTP");
xml.open("GET","http://xxx/test.asp",false);
xml.send(); 
用firbug调试的时候这句直接跳过了为什么?

[解决办法]
firbug ?firefox下要用 xml=new XMLHttpRequest();


if(window.XMLHttpRequest){
 xml=new ActiveXObject("Microsoft.XMLHTTP");
}else{
   xml=new XMLHttpRequest();
}
xml.open("GET","http://xxx/test.asp",false);
xml.send(); 

热点排行