IE浏览器不支持AJAX是怎麽回事?
2个回答
展开全部
写AJAX程式,一般不同的浏览器,代码不是一样的,标准不一样,
有些语句因不同浏览器不同而不同,所以你应该选取其它的浏览器
Example
下下的下码是是JScript中创建建个XMLHTTP对象并从服务器请求建个
XML文档。服务器器器XML文档并显示。
var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
是在IE的浏浏器中 new XMLHttpRequest() 来创建对象器象下象:
var xmlHttpReq = new XMLHttpRequest();
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
有些语句因不同浏览器不同而不同,所以你应该选取其它的浏览器
Example
下下的下码是是JScript中创建建个XMLHTTP对象并从服务器请求建个
XML文档。服务器器器XML文档并显示。
var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
是在IE的浏浏器中 new XMLHttpRequest() 来创建对象器象下象:
var xmlHttpReq = new XMLHttpRequest();
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |