使用jquery实现简单的ajax
-->html页
. 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>用户名校验实例</title>
<script src="../js/jquery-1.7.2.js" type="text/javascript"></script>
<script src="../js/verify.js" type="text/javascript"></script>
</head>
<body onload="verify()">
用户名校验的jax实例
<!--ajax方式下不需要使用表单进行数据提交,因此不用写表单-->
<input type="text" value="" id="username" />
<input type="button" value="提交" onclick=""/>
<!--预留空间,显示结果-->
<p id="result"></p>
<!--p is block,but span is inline--->
</body>
</html>
—>js页
. 代码如下:
function verify() {
$("#username").keyup(function () {
var user = $(this).val();
var userobj = $(this);
$.post("../index.x", { userobj: user }, callback);
});
}
function callback(data) {
$("#result").text(data);
}
—>aspx页
. 代码如下:
<%
response.clear();
string str_name = request["userobj"];
if (str_name == "xtyang")
{
response.write("ok");
}
else
{
response.write("no");
}
response.end();
%>
上一篇: 好你个黑棉袄
下一篇: 板栗怎么去皮和壳?吃板栗需要注意什么?