我正在 jquery 的 ajax 中尝试 post(),.. 我了解到可以使用 post() 传递参数,但我不知道如何在相应的 html 页面中处理它们。有人可以帮我做吗?...
这是我的 post() 代码..
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(function()
{
debugger;
$.post("postpage.htm",
{
name: "John Doe",
age: "40"
},
function(data, textStatus)
{
alert("ur status is:" + textStatus);
alert("Response from server: " + data);
});
});
</script>
</head>
<body>
</body>
</html>
这是 postpage.html 的代码。
<html>
<head>
<title> Now in posted page...!!
</title>
</head>
<body>
<div>"<name>'s age is <age>"</div>
</body>
</html>
提前致谢..;-)