[求助]ajax 怎么将返回的数据传递回去啊???
代码如下:function getRecord(){
var xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp.open("GET", "getdir.php", true);
xmlHttp.onreadystatechange=function(){
if (xmlHttp.readyState==4){
if(xmlHttp.status==200){
var mytext=xmlHttp.responseText;
return mytext;
}
}
}
xmlHttp.send(null);
}
function showdata(){
var _content=document.getElementById("contents");
_content.innerHTML=getRecord();
}
可是总是显示不出数据来啊?
怎么回事呢?
[此贴子已经被作者于2006-8-22 10:58:24编辑过]