Ajax $.getJSON案例详解
更新时间:2013年03月05日 14:54:30 作者:
ajax中的$.getJSON方法想必大家非常熟悉吧,本文接下来将在为你巩固一下,感兴趣的你可以参考下,希望对你有所帮助
复制代码 代码如下:
<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>
相关文章
你的jquery ajax无效和你的jquery引入路径有关
当你发现你的jquery ajax无效的时候,不妨使用 fire bug调试一下,这时你会发现,提示"$"无效,为什么会有这种提示呢?可能是你引入jquery.js的路径有问题2013-06-06
甩掉ashx和asmx使用jQuery.ajaxWebService请求WebMethod简练处理Ajax
这篇文章主要介绍了甩掉ashx和asmx使用jQuery.ajaxWebService请求WebMethod简练处理Ajax的相关资料,需要的朋友可以参考下2016-08-08


最新评论