jQuery
我正在发出一个 AJAX 请求,该请求foo
使用来自服务器的响应来更新变量 ( ) 的值。这是我正在使用的代码:
//## My variable ##
var foo = "";
//## Send request ##
$.ajax({
url: "/",
dataType: "text",
success: function(response) {
foo = "New value:" + response;
},
error: function() {
alert('There was a problem with the request.');
}
});
//## Alert updated variable ##
alert(foo);
问题是 的值foo
仍然是一个空字符串。我知道这不是服务器端脚本的问题,因为我要么会收到错误警报,要么至少会收到 string "New value:"
。
这是一个演示问题的 JSFiddle:http: //jsfiddle.net/GGDX7/
为什么价值foo
不变?
纯JS
我正在发出一个 AJAX 请求,该请求foo
使用来自服务器的响应来更新变量 ( ) 的值。这是我正在使用的代码:
//## Compatibility ##
var myRequest;
if (window.XMLHttpRequest) {
myRequest = new XMLHttpRequest();
} else if (window.ActiveXObject) {
myRequest = new ActiveXObject("Microsoft.XMLHTTP");
}
//## My variable ##
var foo = "";
//## Response handler ##
myRequest.onreadystatechange = function() {
if (this.readyState === 4) {
if (this.status === 200) {
foo = "New value:" + this.responseText;
} else {
alert('There was a problem with the request.');
}
}
};
//## Send request ##
myRequest.open('GET', "response.php");
myRequest.send();
//## Alert updated variable ##
alert(foo);
问题是 的值foo
保持为空字符串。我知道这不是服务器端脚本的问题,因为我要么会收到错误警报,要么至少会收到 string "New value:"
。
这是一个演示问题的 JSFiddle:http: //jsfiddle.net/wkwjh/
为什么价值foo
不变?