回首忆惘然
下面给你一个登录的例子,流程:ajax提交后台-访问数据库-返回数据-登录成功1、Html代码123<input type="text" id="User"><input type="text" id="Psd"> <input type="button" onclick="Login();" id="登录">2、js代码123456789101112131415funcation Login(){$.ajax({ type: "post", contentType: "application/json", url: "../Backstage/AdminService.asmx/GetAdminList",//请求后台方法 data: JSON.stringify({ Name: user,Password:psd}), success: function (result) { //判断result.d的值; }, error: function (response) { var r = jQuery.parseJSON(response.responseText); alert("Message: " + r.Message); }}) }3、一般处理程序123456[WebMethod] public bool GetAdminList(string Name;string Password) { //访问数据库 //成功返回true,失败返回False; }