script src="js/jquery-1.9.1.js" type="text/javascript">/script>
下面是 script type="text/javascript">
$(function () {
$('#txtUserName').blur(function () {
var username = $(this).val();
$.ajax({
type: "post",
contentType: "application/json",//傳值的方式
url: "WebAjaxForMe.aspx/GetValueAjax",//WebAjaxForMe.aspx為目標(biāo)文件,GetValueAjax為目標(biāo)文件中的方法
data: "{username:'" + username + "'}",//username 為想問后臺(tái)傳的參數(shù)(這里的參數(shù)可有可無)
success: function (result) {
alert(result.d);//result.d為后臺(tái)返回的參數(shù)
}
})
})
})
/script>
//這里是參數(shù)的來源
input id="txtUserName" type="text" />
[WebMethod]//方法前邊必須添加 [WebMethod]
public static string GetValueAjax(string username)//這個(gè)方法需要是靜態(tài)的方法要用到關(guān)鍵字static
{
//在這里可以對(duì)傳進(jìn)來的參數(shù)進(jìn)行任何操作
return username;
}