高手进来看看我这个Js函数 5

functionajaxSubmit(url,method,postContent){//codeforMozilla,etc.if(window.XMLHttpRequ... function ajaxSubmit(url, method, postContent){
// code for Mozilla, etc.
if (window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}
// code for IE
else if (window.ActiveXObject){
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if(xmlhttp) {
if(method.toLowerCase() == "get") {
xmlhttp.open("GET", url + "?" + postContent, true);
xmlhttp.send(null);
} else if(method.toLowerCase() == "post") {
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader("Content-Type", "text/xml;charset=utf-8");
xmlhttp.send(postContent);
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4){
return xmlhttp.responseText;
}
};
} else {
alert("不能建立XMLHttp组建,请检查您的浏览器!");
}
}

返回结果一直是undefined,但是如果在return xmlhttp.responseText;处使用alert()却能够正常输出获得的内容。

请给出详细解决方法,谢谢!
展开
 我来答
流水自东西
2008-02-05 · TA获得超过298个赞
知道小有建树答主
回答量:282
采纳率:100%
帮助的人:0
展开全部
函数放里面执行,本来就是异步的,不可能返回值的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式