-3

webmethod of a webserviceJquery を使用して呼び出す必要がありますが、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 に答える