<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
var jj;
$("button").click(function(){
$.post("/example/jquery/demo_test_post.asp",
{
name:"Donald Duck",
city:"Duckburg"
},
function(data,status){
jj=data; //为什么第一次返回的时候没有把data赋值给jj ???
});
alert(jj); //为什么jj第一次返回的值是undefined ???
});
});
</script>
</head>
<body>
<button>向页面发送 HTTP POST 请求,并获得返回的结果</button>
</body>
</html>
代码测试地址:
http://www.w3school.com.cn/tiy/t.asp?f=jquery_ajax_post