1. 程式人生 > >jQuery之常見知識點整理

jQuery之常見知識點整理

1.jQ中頁面載入完畢後自動執行js的方法

1).整個頁面的document全部載入完成以後執行。

window.onload =function() { 
    $("table tr:nth-child(even)").addClass("even"); 
    //這個是jquery程式碼 
};

2).載入DOM結構後執行

$(document).ready(function() { 
    //任何需要執行的js特效
    $("table tr:nth-child(even)").addClass("even"); 
});

3).同2

$(function() { 
    $("table tr:nth-child(even)").addClass("even"); 
    //任何需要執行的js特效
}

 

2.jQ中的選擇器表示式有哪些?

單獨列一篇說明

 

參考:https://www.cnblogs.com/2huos/p/js-autorun.html