本文通过一个Ajax登陆实例,学习JQuery在Ajax方面的应用。
//前台代码
<script language="javascript">
$(document).ready(
function(){
$("#btnLogin").click(function(){Login();})
}
);
function Login()
{
if(Check())
{
Go();
}
}
function Check()
{
if($("#txtUserID").val()=="")
{
alert("帐号不能为空!");
$("#txtUserID").focus();
return false;
}
if($("#txtPass").val()=="")
{
alert("密码不能为空!");
$("#txtPass").focus();
return false;
}
return true;
}
function Go()
{
$.post("LoginCheck.aspx", { Action: "post", UserID: $("#txtUserID").val(),UserPass: $("#txtPass").val() },
function (data, textStatus){
alert(data.result);
"json");
}
</script>