var ServerTime;
$(function() {
var rand = Math.random();
$.get("getservertime/getime.aspx?radn=" + rand, { Action: "get", Name: "lulu" }, function(data, textStatus) {
this;
ServerTime = data.toString();
})
alert(ServerTime)
});
</script>
怎么才能到到返回值 alert(ServerTime)找不到
慕神8447489