0
<script type="text/javascript" language="javascript">
        $(document).ready(function () {

            var LastRecID = 1;
            $(window).scroll(function () {
                if ($(window).scrollTop() == $(document).height() - $(window).height()) {
                    var ImpData = document.getElementById('<%= hdnLanguage.ClientID %>').value;
                    if (LastRecID <= 1)
                        sendData();
                    LastRecID++;
                }
            });

            function sendData() {

                $.ajax(
                 {
                     type: "POST",
                     url: "try.aspx/GetData",
                     data: ImpData ,
                     contentType: "application/json; charset=utf-8",
                     dataType: "json",
                     async: "true",
                     cache: "true",

                     success: function (msg) {
                         $("#myDiv").append(msg.d);
                     },

                     Error: function (x, e) {
                         alert("err");
                     }

                 });

            }

        });


    </script>

我隐藏了字段,它具有相同的价值。我为 hdnLanguage 设置 ImpData

 var ImpData = document.getElementById('<%= hdnLanguage.ClientID %>').value;

我用 Json 发送数据:

data: ImpData 

但我不知道如何在代码后面(在静态 Web 服务中)调用此数据(ImpData)。感谢您的回答。

4

2 回答 2

0

data转换为GetData参数。你如果你data这样发送:

data: { param1: ImpData }

您的GetData方法必须至少具有以下param1参数:

public static void GetData(string param1)
于 2013-09-13T15:12:13.053 回答
0

我找到答案

杰森:

data: "{'Param': '" + Param + "'}"

代码背后:

public static string GetData(string Param)
{

....

}
于 2013-09-18T12:45:32.550 回答