-1

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

[WebMethod()]
public string GetMSG() {
    if(condition) {
        return 'MSG'
    } else {
        return ''  
    }
}

现在使用它msg我必须显示警报。如何msg在 jQuery 中使用返回和显示警报。

4

1 回答 1

3

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

$.ajax({
    url: urlOfThePage + "GetMSG",
    type: "get",
    success: function (response, textStatus, jqXHR) {
        alert(response);
    },
    error: function (jqXHR, textStatus, errorThrown) {
    },
    complete: function () {
    }
});
于 2012-12-06T10:26:17.530 回答