jQuery parent()
此方法返回匹配元素集合中,每個元素的直接父元素。
所取得的父輩元素集合可以使用表示式進行篩選。
jQuery1.0版本新增。
[JavaScript] 純文字檢視 複製程式碼.parent([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").parent().css("background-color", "blue") }) }) </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").parent(".ant").css("background-color", "blue") }) }) </script> </head> <body> <div> <p> <span>螞蟻部落一</span> </p> </div> <div> <p class="ant"> <span>螞蟻部落二</span> </p> </div> <input type="button" id="bt" value="檢視演示"/> </body> </html>
只會將class屬性值為"ant"的一級父元素背景顏色設定為藍色。
相關文章
- jQuery :parentjQuery
- jQuery parents()和parent()jQuery
- jQuery parent>child選擇器jQuery
- jQuery parents()和parent()區別jQuery
- Jquery中獲取iframe的程式碼(window.top.parent)jQuery
- Flutter框架分析- Parent DataFlutter框架
- multi-parent genetic algorithmsGo
- Error: parent directory is world writable but not stickyError
- 理解spring-boot-starter-parentSpringboot
- shared SQL,parent cursor,child cursorSQL
- closest()函式parent()函式的區別函式
- postMessage 死迴圈與 window.parent
- ORA-600(kssadd: null parent)錯誤Null
- Owner,Parent,Self,Sender,Clientheight,Height(轉)client
- Javascript內建變數top和parent區別JavaScript變數
- [BUG反饋]function get_parent_category() 死迴圈FunctionGo
- php物件導向知識 this,self,parent的區別PHP物件
- Maven:Non-resolvable parent POM: Failure to find錯誤MavenAI
- Shade in spring-boot-starter-parent is misconfigurSpringboot
- php物件導向的簡單總結 $this $parent selfPHP物件
- ORA-600(kssadd_stage: null parent)錯誤Null
- 2009-12-22 11:29 解決 jQuery 實現父視窗的問題 如window.parent.document.getElementById().innerHTML...jQueryHTML
- 你真的理解 Spring Boot 專案中的 parent 嗎?Spring Boot
- closest()、parents()和parent()方法的區別簡單介紹
- ORA-00600: internal error code, arguments: [kssadd: null parent]ErrorNull
- Maven - Non-resolvable parent POM: Failure to find xx:xx:pomMavenAI
- [譯][python]ImportError:attempted relative import with no known parent packagePythonImportErrorPackage
- Maven多模組中,parent version如何採用自定${version}表示Maven
- 請教JAVA前輩:在javascript中window.open("index.jsp","_parent")中,_parent引數是什麼意思?JavaScriptIndexJS
- Windows系統中owner owned 關係和 parent child關係Windows
- v$sqlarea_parent cursor_v$sql_child cursor關係SQL
- javascript--iframe的JS方法,用法!contentWindow 、parent、top、onloadJavaScriptJS
- 【JAVA】Java中 File f=new File(String parent ,String child)Java
- Dynamics CRM Error- Creating Entity with an invalid parent. Entity: EmailErrorAI
- jQuery初探:自制jQueryjQuery
- CRM中介軟體裡parent not ok的錯誤訊息如何處理
- 我的’jQuery’和jQueryjQuery
- 我的''jQuery''和jQueryjQuery