jQuery parents()

admin發表於2017-02-15
此方法獲取包含所有匹配元素的父輩元素的集合。

父輩元素集合可以使用表示式進行篩選。

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元素的邊框樣式。

相關文章