我有代码jquery代码来加载滚动数据这里是函数
function GetRecords() {
pageIndex++;
if (pageIndex == 2 || pageIndex <= pageCount) {
$("#loader").show();
$.ajax({
type: "POST",
url: "Default.aspx/GetCustomers",
data: '{pageIndex: ' + pageIndex + '}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert(response.d);
},
error: function (response) {
alert(response.d);
}
});
}
}
如果你看到url,它在我写default.aspx / getcustomer时有效但是当我的页面路径没有像url这样的扩展名时它不起作用:default / getcustomer
请咨询