jQuery find()

admin發表於2017-02-15

此方法獲得匹配元素集合中所有元素的子元素集合,可以通過選擇器、jQuery物件或元素刪選。

語法結構一:

[JavaScript] 純文字檢視 複製程式碼
.find(selector)

引數解析:

selector:一個用於匹配元素的選擇器字串。

jQuery1.0版本新增。

語法結構二:

[JavaScript] 純文字檢視 複製程式碼
.find(element)

引數解析:

element:一個dom元素或一個jQury物件用來匹配元素。

jQuery1.6版本新增。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.box{
  width:300px;
  height:250px;
  background:#ccc;
}
.ant{
  width:200px;
  height:150px;
  background:green;
}
p{
  width:100px;
  height:30px;
  line-height:30px;
  background:blue;
  text-align:center;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $(".box").find("p").css("color", "red");
}) 
</script>  
</head> 
<body> 
<div class="box"> 
  <div class="ant"> 
    <p>螞蟻部落一</p> 
  </div> 
  <p>螞蟻部落二</p> 
</div> 
<p>螞蟻部落三</p> 
</body> 
</html>

以上程式碼可以將box元素下的所有p元素的字型顏色設定為紅色。

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.box{
  width:300px;
  height:250px;
  background:#ccc;
}
.ant{
  width:200px;
  height:150px;
  background:green;
}
p{
  width:100px;
  height:30px;
  line-height:30px;
  background:blue;
  text-align:center;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  var op = document.getElementById("p");
  $(".box").find(op).css("color", "red");
}) 
</script>  
</head> 
<body> 
<div class="box"> 
  <div class="ant"> 
    <p id="p">螞蟻部落一</p> 
  </div> 
  <p>螞蟻部落二</p> 
</div> 
<p>螞蟻部落三</p> 
</body> 
</html>

以上程式碼將box元素下id屬性值為p的元素的字型顏色設定為紅色。