您好,登錄后才能下訂單哦!
小編給大家分享一下jQuery如何實(shí)現(xiàn)篩選方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
jQuery篩選方法
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="jquery.min.js"></script> </head> <body> <div class="grandfather"> <div class="father"> 北冥有魚(yú) <p class="son1"> <span>落霞與孤鶩齊飛</span> </p> <div class="son2"> <p>秋水共長(zhǎng)天一色</p> </div> </div> </div> <script> $(function(){ //1.父 console.log($(".son1").parent()); //parent返回的是最近一級(jí)的父級(jí)元素 親爸爸 //2.(1)子 親兒子 children 類似子元素選擇器 ul>li $(".father").children("p").css("color","red"); //2.(2)可以選擇所有的孩子 包括兒子和孫子 find() 類似后代選擇器 $(".grandfather").find("p").css("color","green") }) </script> </body> </html>
看完了這篇文章,相信你對(duì)“jQuery如何實(shí)現(xiàn)篩選方法”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。