我必须使用jQuery和服务器端方法
来调用服务器端方法GetMSG
[WebMethod()]
public string GetMSG() {
if(condition) {
return 'MSG'
} else {
return ''
}
}
现在使用msg
我必须显示警告。如何使用return msg
并在jQuery中显示alert。
答案 0 :(得分:3)
您是否需要jQuery代码来执行Ajax调用并显示返回值?如果是的话,你可以选择这样的东西:
$.ajax({
url: urlOfThePage + "GetMSG",
type: "get",
success: function (response, textStatus, jqXHR) {
alert(response);
},
error: function (jqXHR, textStatus, errorThrown) {
},
complete: function () {
}
});