DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中nextAll()方法用法實例教程
jQuery中nextAll()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中nextAll()方法用法。分享給大家供大家參考。具體分析如下:

此方法查找匹配元素之後所有的同輩元素。也可以使用可選的表達式對同輩元素集合進行篩選。

語法結構:
代碼如下:$(selector).nextAll(expr)

參數列表:
參數 描述 expr 可選。用來過濾的表達式。

實例代碼:

實例一:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
.father{
  height:200px;
  width:200px;
  border:1px solid blue;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("p").nextAll().css("color","blue")
})
</script>
</head>
<body>
<div class="father">
  <p>我是p元素</p>
  <span>我是span元素</span>
  <p>我是p元素</p>
  <div>我是div元素</div>
</div>
</body>
</html>

將p元素之後的所有同輩元素中的字體顏色設置藍色。

實例二:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
.father{
  height:200px;
  width:200px;
  border:1px solid blue;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("p").nextAll("div").css("color","blue")
})
</script>
</head>
<body>
<div class="father">
  <p>我是p元素</p>
  <span>我是span元素</span>
  <div>我是div元素</div>
  <p>我是p元素</p>
  <div>我是div元素</div>
</div>
</body>
</html>

將p元素之後的所有同輩div元素中的字體顏色設置藍色。

希望本文所述對大家的jQuery程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved