如何在不使用脚本管理器的情况下从 jquery 调用页面方法
问问题
2573 次
2 回答
3
你可以这样做
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "webpage.aspx/methodName",
data: "{id: '" + id + "'}",
success: getTargetSuccess,
error: getTargetFailure
});
function getTargetSuccess(result,e)
{
var data = result.d;
}
function getTargetFailure(result,e)
{ }
于 2011-03-16T13:15:02.700 回答
0
于 2011-03-16T13:09:53.703 回答