基于jQuery的AJAX和JSON的实例
jQuery内置的AJAX功能,直接访问后台JSON格式的数据,然后通jQuer把数据定到事先设计好的html模板上,直接在面上示。
先来看一下html模板:
  <table id="datas" border="1" cellspacing="0" style="border-collapse: collapse">
                <tr>
                    <th>
                        订单ID</th>
                    <th>
                        ID</th>
                    <th>
                        ID</th>
                    <th>
                        订购日期</th>
                    <th>
                        发货日期</th>
                    <th>
                        主名称</th>
                    <th>
                        主地址</th>
                    <th>
                        主城市</th>
                    <th>
                        更多信息</th>
                </tr>
                <tr id="template">
                    <td id="OrderID">
                    </td>
                    <td id="CustomerID">
                    </td>
                    <td id="EmployeeID">
                    </td>
                    <td id="OrderDate">
                    </td>
                    <td id="ShippedDate">
                    </td>
                    <td id="ShippedName">
                    </td>
                    <td id="ShippedAddress">
                    </td>
                    <td id="ShippedCity">
                    </td>
                    <td id="more">
                    </td>
                </tr>
            </table>
一定要注意的就是里面所有的id属性,个是一个关键。再来看一下AJAX求和定数据的代
 $.ajax({
            type: "get",//使用get方法访问后台
            dataType: "json",//返回json格式的数据
            url: "BackHandler.ashx",//访问的后台地址
            data: "pageIndex=" + pageIndex,//送的数据
            complete :function(){$("#load").hide();},//AJAX求完成时隐loading提示
            success: function(msg){//msg返回的数据,在里做数据
                var data = msg.table;
                $.each(data, function(i, n){
                    var row = $("#template").clone();
                    row.find("#OrderID").text(n.订单ID);
                    row.find("#CustomerID").text(n.ID);
                    row.find("#EmployeeID").text(n.ID);
                    row.find("#OrderDate").text(ChangeDate(n.订购日期));
                    if(n.发货日期!== undefined) row.find("#ShippedDate").text(ChangeDate(n.
发货日期));
                    row.find("#ShippedName").text(n.主名称);
                    row.find("#ShippedAddress").text(n.主地址);
                    row.find("#ShippedCity").text(n.主城市);
                    row.find("#more").html("<a href=OrderInfo.aspx?id=" + n.订单ID + "&pageindex="+pageIndex+"> More</a>");                   
                    row.attr("id","ready");//变绑定好数据的行的id
                    row.appendTo("#datas");//添加到模板的容器中
                });
个是jQueryAJAX方法,返回数据并不复杂,主要明一下怎把数据按模板的定义显示到到面上。首先是var row = $("#template").clone();先把模板制一份,接下来row.find("#OrderID").text(n.订单ID);,表示到id=OrderID标记置它的innerTextjquery的attr属性的数据,当然也可以html格式的数据。或者是通外部的函数把数据转换成需要的格式,比如row.find("#OrderDate").text(ChangeDate(n.订购日期));有点服器控件做模板定数据的感
    所有的些,都是放在一个静面里,只通AJAX方法从后台取数据,所有html如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="/1999/xhtml">
<head>
    <title>test1</title>

    <script language="javascript" type="text/javascript" src="js/jquery-latest.pack.js"></script>

    <script language="javascript" type="text/javascript" src="js/PageDate.js"></script>

</head>
<body>
    <div>
         <div>
            <br />
            <input id="first" type="button" value="  <<  " /><input id="previous" type="button"
                value="  <  " /><input id="next" type="button" value="  >  " /><input id="last" type="button"
                    value="  >>  " />
             <span id="pageinfo"></span>
            <table id="datas" border="1" cellspacing="0" style="border-collapse: collapse">
                <tr>
                    <th>
                        订单ID</th>
                    <th>
                        ID</th>
                    <th>
                        ID</th>
                    <th>
                        订购日期</th>
                    <th>
                        发货日期</th>
                    <th>
                        主名称</th>
                    <th>
                        主地址</th>
                    <th>
                        主城市</th>
                    <th>
                        更多信息</th>
                </tr>
                <tr id="template">
                    <td id="OrderID">
                    </td>
                    <td id="CustomerID">
                    </td>
                    <td id="EmployeeID">
                    </td>
                    <td id="OrderDate">
                    </td>
                    <td id="ShippedDate">
                    </td>
                    <td id="ShippedName">
                    </td>
                    <td id="ShippedAddress">
                    </td>
                    <td id="ShippedCity">
                    </td>
                    <td id="more">
                    </td>
                </tr>
            </table>
        </div>
        <div id="load" style="left: 0px; position: absolute; top: 0px; background-color: red">
           
        </div>
        <input type="hidden" id="pagecount" />
    </div>
</body>
</html>
PageData.js就是包括上面AJAX请求和绑定数据代码的js,整个页面连form都不用,这样做有什么好处呢。再看下面一个模板

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。