我知道我可以使用以下语法使用 jquery 调用页面方法
$.ajax({
type: "POST",
url: "Default.aspx/GetDate",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Replace the div's content with the page method's return.
$("#Result").text(msg.d);
}
});
这适用于aspx页面,但它可以用于ascx页面吗?(网络控制)
我已经尝试了大约半个小时,因为我无法让它工作,我想知道它是否可能。
注意:为了清楚起见,当我尝试调用 ascx 页面时,我正在更新 jquery 中的 url :)