如何修改下面的代码以使用“成功”在代码隐藏中调用 testMethod()?我需要等待来自 testMesthod() 的返回值并处理它。
$.ajax( {
url : 'myPage.aspx/testMethod',
type : "POST",
contentType : "application/json; charset=utf-8",
data : "{'name':'" + aNb + "'}",
dataType : "json"
}).done(function() {
alert("ok");
}).fail(function() {
alert("not ok");
});
上面的代码不起作用,因为不知何故最新的 JQuery 版本(1.10.1)被 1.3.2 覆盖。
谢谢