1 回答
TA贡献1847条经验 获得超11个赞
下面给你一个登录的例子,流程:ajax提交后台-访问数据库-返回数据-登录成功
1、Html代码
1 2 3 | <input type="text" id="User"> <input type="text" id="Psd"> <input type="button" onclick="Login();" id="登录"> |
2、js代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | funcation 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、一般处理程序
1 2 3 4 5 6 | [WebMethod] public bool GetAdminList(string Name;string Password) { //访问数据库 //成功返回true,失败返回False; } |
- 1 回答
- 0 关注
- 536 浏览
添加回答
举报