JavaScript用JQuery呼叫Server端方法示例代码

时间:2021-05-26

准备好Server端的方法

[System.Web.Services.WebMethod]public static string VeryUserName(string name){string rtn = "恭喜,此帐号还没有注册,你可以使用。";if (name == "")rtn = "请填写一个注册帐号。";if (name == "Insus.NET")rtn = "此用户已经注册,请使用另外帐号。"; return rtn;}

HTML代码:

<asp:TextBox ID="TextBoxAccount" runat="server"></asp:TextBox><br /><input id="btnrReg" type="button" value="注册" onclick="VeryRegAccount()" />

Javascript脚本:

<script src="scripts/jquery-1.3.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function VeryRegAccount() { $.ajax({ type: "POST", url: "Default.aspx/VeryUserName", data: '{name: "' + $("#<%= TextBoxAccount.ClientID%>")[0].value + '" }', contentType: "application/json; charset=utf-8", dataType: "json", success: OnSuccess, failure: function (response) { alert(response.d); } }); } function OnSuccess(response) { alert(response.d); } </script>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章