-3

我需要webmethod of a webservice用 Jquery 调用 a 但我已经在webservice.asmx页面上定义了 web 方法。但是现在我需要在我的 default.aspx.cs 页面上编写该页面,当我从 jquery ajax 调用它时这不起作用...

我有

    <script type="text/javascript">
    $(document).ready(function () {
        $contentLoadTriggered = false;
        $(window).scroll(
    function () {
        if ($(window).scrollTop() == $(document).height() - $(window).height()) {

            $contentLoadTriggered = true;

            $.ajax(
    {
        type: "POST",
        url: "DynamicDataLoad2.aspx/GetDataFromServer",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        async: true,
        cache: false,
        success: function (msg) {
            $("#wrapperDiv").append(msg.d);
            $contentLoadTriggered = false;
        },
        error: function (x, e) {
            alert("The call to the server side failed. ");
        }
    });
        }
    });
    });
</script>

我在 Default.aspx.cs 页面上定义了 GetDataFromServer()。

4

1 回答 1

0
$.ajax({
 url : "AppUrl/<WebMethod>",
 type : "GET",
 success : function(data){
  }
});

尝试这个

于 2012-07-02T06:19:00.077 回答