jQuery parents()
此方法獲取包含所有匹配元素的父輩元素的集合。
父輩元素集合可以使用表示式進行篩選。
jQuery1.0版本新增。
語法結構:
[JavaScript] 純文字檢視 複製程式碼.parents([selector ])
引數解析:
selector:字串,用於匹配元素的選擇器表示式字串。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> div{ height:200px; width:200px; background-color:#ccc; } p { height:150px; width:150px; background-color:red; text-align:center; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#bt").click(function () { $("span").parents().css("border", "5px solid green") }) }) </script> </head> <body> <div> <p> <span>螞蟻部落</span> </p> </div> <input type="button" id="bt" value="檢視演示"/> </body> </html>
設定span元素的所有父輩元素的邊框樣式。
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> div{ height:200px; width:200px; background-color:#ccc; } p { height:150px; width:150px; background-color:red; text-align:center; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#bt").click(function () { $("span").parents("div").css("border", "5px solid green") }) }) </script> </head> <body> <div> <p> <span>螞蟻部落</span> </p> </div> <input type="button" id="bt" value="檢視演示"/> </body> </html>
對所有的父輩元素進行篩選,只設定div元素的邊框樣式。
相關文章
- jQuery parents()和parent()jQuery
- jQuery parents()和parent()區別jQuery
- Centering HTML elements larger than their parentsHTML
- closest()、parents()和parent()方法的區別簡單介紹
- YT15-HDU-Harry's parents had left him a lot of gold coinsGo
- jQuery初探:自制jQueryjQuery
- 我的’jQuery’和jQueryjQuery
- 我的''jQuery''和jQueryjQuery
- 【Jquery】jquery 基本的動畫jQuery動畫
- 【Jquery】jquery 自定義動畫jQuery動畫
- jQuery :not()jQuery
- jQuery not()jQuery
- jQuery is()jQuery
- jQuery()jQuery
- jQuery on()jQuery
- jQueryjQuery
- JQuery模板外掛-jquery.tmpljQuery
- jquery列印頁面(jquery.jqprint)jQuery
- jQuery入門(三)--- jQuery語法jQuery
- jQuery 3教程(一):jQuery介紹jQuery
- jQuery之使用jQuery.fn.prop()替換jQuery.fn.attr()jQuery
- JQuery基本知識彙總;JQuery常用方法;淺入瞭解JQueryjQuery
- (jQuery) jQuery中的事件與動畫(上)jQuery事件動畫
- jquery.fn.extend與jquery.extendjQuery
- jQuery 1.10.0 和 jQuery 2.0.1 釋出jQuery
- jQuery表單外掛jQuery.formjQueryORM
- jQuery 3教程(二):jQuery選擇器jQuery
- jQuery心得2--jQuery案例剖析1jQuery
- jQuery初探jQuery
- jQuery碎片jQuery
- JQuery動畫jQuery動畫
- 分解jQueryjQuery
- jquery的onjQuery
- jquery事件jQuery事件
- jQuery AjaxjQuery
- jQuery 事件jQuery事件
- jQuery 尺寸jQuery
- jQuery - AJAXjQuery