没有页面扩展名的jquery url路径加载不起作用

时间:2017-06-26 15:09:17

标签: jquery

我有代码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

请咨询

0 个答案:

没有答案