<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)。感谢您的回答。