jQuery Ajax 비동기 처리 JSon 데이터 상세 설명

더 읽 기
$.ajax({
            type: "get",//  get      
            dataType: "json",//  json     
            contentType:"application/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("More");                    
                    row.attr("id","ready");//          id
                    row.appendTo("#datas");//         
                });

참고:http://www.jb51.net/article/42795.htm
     http://fyq891014.blog.163.com/blog/static/20074019120123305029795/

좋은 웹페이지 즐겨찾기