GetMSG
我必须使用 jQuery调用服务器端方法和该服务器端方法
[WebMethod()]
public string GetMSG() {
if(condition) {
return 'MSG'
} else {
return ''
}
}
现在使用它msg
我必须显示警报。如何msg
在 jQuery 中使用返回和显示警报。
GetMSG
我必须使用 jQuery调用服务器端方法和该服务器端方法
[WebMethod()]
public string GetMSG() {
if(condition) {
return 'MSG'
} else {
return ''
}
}
现在使用它msg
我必须显示警报。如何msg
在 jQuery 中使用返回和显示警报。