這篇文章主要介紹了jQuery中prevAll()方法用法,實例分析了prevAll()方法的功能、定義及查找匹配元素集合之前所有同輩元素的使用技巧,需要的朋友可以參考下
本文實例講述了jQuery中prevAll()方法用法。分享給大家供大家參考。具體分析如下:
此方法尋找符合元素集合之前所有的同儕元素。
同儕元素集合可以透過選擇器進行篩選。
語法結構:
程式碼如下:
$("selector").prevAll(expr)
參數清單:
實例程式碼:
#實例一:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</title> <style type="text/css"> .father{ height:200px; width:200px; border:1px solid blue; } </style> <script type="text/ javascript " src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $( document ).ready(function(){ $(".father p").prevAll().css("color","blue") }) </script> </head> <body> <p class="father"> <p>我是p元素</p> <span>我是span元素</span> <p>我是p元素</p> <p>我是p元素</p> </p> </body> </html>
實例二:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</title> <style type="text/css"> .father{ height:200px; width:200px; border:1px solid blue; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".father p").prevAll("span").css("color","blue") }) </script> </head> <body> <p class="father"> <p>我是p元素</p> <span>我是span元素</span> <p>我是p元素</p> <p>我是p元素</p> </p> </body> </html>
以上是jQuery中prevAll()方法用法實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!