ajax异步调用,回调函数的问题,this未定义
代码如下:functiongetHttpRequest(){varrequest=false;if(window.XMLHttpRequest)request=newXM...
代码如下:
function getHttpRequest()
{
var request=false;
if(window.XMLHttpRequest)
request=new XMLHttpRequest();
else if(window.ActiveXObject)
{
try
{
request=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
request=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
request=false;
}
}
}
return request;
}
function updateEvent()
{
window.alert("who's calling ("+this.myState+")");
}
function GetIt(xmlHttp,url)
{
if(xmlHttp)
{
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange=updateEvent;
xmlHttp.send(null);
}
}
var xhr1=new getHttpRequest();
xhr1.myState="xhr1";
var xhr2=new getHttpRequest();
xhr2.myState="xhr2";
GetIt(xhr1,"http://localhost/Ajax/Asynchronous/message.txt");
GetIt(xhr2,"http://localhost/Ajax/Asynchronous/message.txt");
为什么updateEvent()中,this.myState是未定义的呢??这跟定义按钮的onclick有什么不同呢??
function handleClickEvent()
{
alert(this.getAttribute("href"));
return false;
}
window.onload=function()
{
var links=document.getElementsByTagName("a");
for(var i=0;i<links.length;i++)
links[i].onclick=handleClickEvent;
} 展开
function getHttpRequest()
{
var request=false;
if(window.XMLHttpRequest)
request=new XMLHttpRequest();
else if(window.ActiveXObject)
{
try
{
request=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
request=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
request=false;
}
}
}
return request;
}
function updateEvent()
{
window.alert("who's calling ("+this.myState+")");
}
function GetIt(xmlHttp,url)
{
if(xmlHttp)
{
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange=updateEvent;
xmlHttp.send(null);
}
}
var xhr1=new getHttpRequest();
xhr1.myState="xhr1";
var xhr2=new getHttpRequest();
xhr2.myState="xhr2";
GetIt(xhr1,"http://localhost/Ajax/Asynchronous/message.txt");
GetIt(xhr2,"http://localhost/Ajax/Asynchronous/message.txt");
为什么updateEvent()中,this.myState是未定义的呢??这跟定义按钮的onclick有什么不同呢??
function handleClickEvent()
{
alert(this.getAttribute("href"));
return false;
}
window.onload=function()
{
var links=document.getElementsByTagName("a");
for(var i=0;i<links.length;i++)
links[i].onclick=handleClickEvent;
} 展开
3个回答
展开全部
this是局部变量,不是全局变量
用传参吧function updateEvent(参数)
用传参吧function updateEvent(参数)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1首先:var xhr1=new getHttpRequest();
这里不应该有new
2其次: xhr1.myState="xhr1";
AJAX 里的那个对象XMLHttpRequest没有myState这个属性,你想要的可能是这个属性status,表示就绪状态
这里不应该有new
2其次: xhr1.myState="xhr1";
AJAX 里的那个对象XMLHttpRequest没有myState这个属性,你想要的可能是这个属性status,表示就绪状态
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询