根据服务器端方法返回从JQuery显示警报

时间:2012-12-06 10:19:30

标签: c# javascript asp.net jquery

我必须使用jQuery和服务器端方法

来调用服务器端方法GetMSG
[WebMethod()]
public string GetMSG() {
    if(condition) {
        return 'MSG'
    } else {
        return ''  
    }
}

现在使用msg我必须显示警告。如何使用return msg并在jQuery中显示alert。

1 个答案:

答案 0 :(得分:3)

您是否需要jQuery代码来执行Ajax调用并显示返回值?如果是的话,你可以选择这样的东西:

$.ajax({
    url: urlOfThePage + "GetMSG",
    type: "get",
    success: function (response, textStatus, jqXHR) {
        alert(response);
    },
    error: function (jqXHR, textStatus, errorThrown) {
    },
    complete: function () {
    }
});