时间:2021-05-28
复制代码 代码如下:
<script type="text/javascript">
function pageIndexChanged() {
var url = "/OrderList/Lists";
var where = "";
@*location.href = "@this.Url.Action("List")?pageindex=" + $("#pager").pager("pageindex") + "&pagesize=" + $("#pager").pager("pagesize") + "&where=" + escape(where);*@
var pageindex = $("#pager").pager("pageindex");
var pagesize = $("#pager").pager("pagesize");
where = escape(where);
$.getJSON(url, { where: where, pageindex: pageindex, pagesize: pagesize }, function (data) {
alert(data.total);
alert(data.rows[0].Order.OrderID);
alert(data.PageIndex);
alert(data.PageSize);
});
}
$(function () {
$("#order-details-search").click(function () {
$(".detail-search").show(100);
});
$("#detail_search_cancle").click(function () {
$(".detail-search").hide(100);
})
});
</script>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
复制代码代码如下://栏目//发送ajax请求$.getJSON("../../../Templet/GetInfoHandler.ashx",//产生JSON
按对象取值:jQuery代码如下(function($){$.getJSON('ajax/test.json',function(data){varitems=
代码如下:复制代码代码如下:无标题文档$(function(){$("button").click(function(){$.getJSON("ajax6.as
jQueryextend()详解及简单实例使用jQuery的时候会发现,jQuery中有的函数是这样使用的:$.get();$.post();$.getJSON
在前端页面开发的过程中,经常使用到Ajax请求,异步提交表单数据,或者异步刷新页面。一般来说,使用Jquery中的$.ajax,$.post,$.getJSON