Ajax $.getJSON案例详解_AJAX教程
推荐:AJAX(XMLHttpRequest.status)状态码本文罗列了一些Jquery中AJAX参数详细列表及XMLHttpRequest.status状态吗,感兴趣的你可以参考下,希望对你学习ajax有所帮助
复制代码 代码如下:www.mb5u.com
<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>
分享:利用AjaxControlToolkit实现百度搜索时的下拉列表提示详细步骤AjaxControlToolkit是一组控件的集合,可以实现自动补充文本框,点击文本框弹出日历,加水印等Ajax效果等等,感兴趣的朋友可以了解下啊,或许本文对你学习ajax有所帮助
相关AJAX教程:
- 相关链接:
- 教程说明:
AJAX教程-Ajax $.getJSON案例详解。