jQuery children()
方法獲取一個包含匹配元素集合中每一個元素的所有子元素集合。
可以通過可選的表示式來過濾所匹配的子元素。
jQuery1.0版本新增。
語法結構:
[JavaScript] 純文字檢視 複製程式碼.children([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"> .father{ width:300px; height:200px; background:red; margin:20px; } .middle { width:200px; height:100px; background:blue; } .inner { width:100px; height:50px; background:green } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#bt").click(function () { $(".father").children("p").css("background-color","black"); }) }) </script> </head> <body> <input type="button" id="bt" value="檢視效果"/> <div class="father"> <div class="middle"> <div class="inner"></div> </div> </div> <div class="father"> <p class="middle"> <div class="inner"></div> </p> </div> </body> </html>
上面的程式碼能夠將p元素的字型顏色設定為黑色。
相關文章
- jQuery的addClass,children,showjQuery
- JavaScript childrenJavaScript
- react解析 React.Children(二)React
- React的this.props.childrenReact
- JavaScript之childNodes 和 children 區別JavaScript
- school dictionary, kids dictionary, children dictionary
- React元件中對子元件children進行加強React元件
- java 查詢資料庫並生成多層childrenJava資料庫
- vue 路由自動化[讀取vue檔案目錄][支援children]Vue路由
- 學習動態效能表(11)--v$latch$v$latch_children
- [LeetCode] 3075. Maximize Happiness of Selected ChildrenLeetCodeAPP
- [譯] 如何向帶有插槽的 React 元件傳遞多個 ChildrenReact元件
- 短視訊直播原始碼,React children元件例項提示框原始碼React元件
- React報錯之React.Children.only expected to receive single React element childReact
- (轉):學習Oracle動態效能表-(11)-v$latch$ v$latch_childrenOracle
- jQuery初探:自制jQueryjQuery
- vue輪播元件實現,$children和$parent,附帶好用的gif錄製工具Vue元件
- 我的’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