載入頁面時,ajax非同步請求資料,$.each()遍曆資料,通過jQuery將資料html()到dom結構中__初始化頁面

來源:互聯網
上載者:User

實戰項目中一個ajax方法截圖



知識點一:jQuery初始化頁面方式。

<script src="Scripts/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
 $(document).ready(function () {
 alert("第一種方法。");
 });
 $(function () {
 alert("第二種方法。");
 });
 jQuery(function ($) {
 alert("第三種方法。");
 });
 window.onload = function () {
 alert("第四種方法。");
 }
</script>

知識點二:JQuery遍曆資料方式

for in 迴圈:

//for in迴圈     for(x in obj.bkdata){         //x表示是下標,來指定變數,指定的變數可以是數組元素,也可以是對象的屬性。         console.log(obj.bkdata[x]);     }  

//元素 each方法

 if (obj.status == 1) {         $(obj.bkdata).each(function(index,item){             //index指下標             //item指代對應元素內容             //this指代每一個元素對象             //console.log(obj.bkdata[index]);             console.log(item);             //console.log($(this));         });     }else{         alert("資料有誤~");     };  

知識點三:怎樣怎樣通過jQuery將值放進dom結構中。

步驟一:定義一個變數 var str=“”;

步驟二:拼接dom結構(清注意逸出字元的使用,再次不做詳解)


步驟三:將拼接的dom結構加到指定的位置。$.("#id").html(str)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.