我写的AJAX为什么在火狐里面显示不出来? 20
在IE下就可以正常显示,是不是需要加什么别的代码?functioncreate(){if(window.ActiveXObject){xmlhttp=newActiveX...
在IE下就可以正常显示,是不是需要加什么别的代码?function create()
{
if(window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP") ;
}
else if(window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
}
//''''''''''''''''''''''''''''''''''''
function loadxml(method,url,getlistt)
{
create();
xmlhttp.open(method,url,true);
xmlhttp.setRequestHeader("Content-Type","text/xml");
xmlhttp.setRequestHeader("Content-Type","GBK");
xmlhttp.onreadystatechange=function ()
{
if (xmlhttp.readystate!=4)
{
return;
}
getlistt(xmlhttp)
}
xmlhttp.send(null);
就是这段代码。。
还是不行呀,没有任何的反应 展开
{
if(window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP") ;
}
else if(window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
}
//''''''''''''''''''''''''''''''''''''
function loadxml(method,url,getlistt)
{
create();
xmlhttp.open(method,url,true);
xmlhttp.setRequestHeader("Content-Type","text/xml");
xmlhttp.setRequestHeader("Content-Type","GBK");
xmlhttp.onreadystatechange=function ()
{
if (xmlhttp.readystate!=4)
{
return;
}
getlistt(xmlhttp)
}
xmlhttp.send(null);
就是这段代码。。
还是不行呀,没有任何的反应 展开
2个回答
展开全部
您好!很高兴为您答疑!
加上下面这两段,如果还有问题,安装Firebug调试下,即时有问题也不会太大了,简单修改下就就行:
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlhttp = false;
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
加上下面这两段,如果还有问题,安装Firebug调试下,即时有问题也不会太大了,简单修改下就就行:
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlhttp = false;
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
展开全部
function create() {
var PubXML = false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}
}
var PubXML = false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询