當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery .next()用法及代碼示例


用法
.next(  [selector ] ) => jQuery

說明:獲取匹配元素集中每個元素的緊隨其後的兄弟。如果提供了選擇器,則僅當它與該選擇器匹配時,它才會檢索下一個兄弟。

  • 添加的版本:1.0.next( [selector ] )

    • selector
      類型:Selector
      一個字符串,包含一個選擇器表達式來匹配元素。

給定一個表示一組 DOM 元素的 jQuery 對象,.next() 方法允許我們在 DOM 樹中搜索這些元素的緊隨其後的兄弟元素,並從匹配的元素構造一個新的 jQuery 對象。

該方法可選擇接受與我們可以傳遞給$() 函數的類型相同的選擇器表達式。如果緊隨其後的兄弟與選擇器匹配,則它保留在新構造的 jQuery 對象中;否則,它被排除在外。

考慮一個帶有簡單列表的頁麵:

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li class="third-item">list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
</ul>

如果我們從第三項開始,我們可以找到緊隨其後的元素:

$( "li.third-item" ).next().css( "background-color", "red" );

此調用的結果是項目 4 後麵的紅色背景。由於我們不提供選擇器表達式,因此以下元素明確包含為對象的一部分。如果我們提供了一個,則該元素將在包含之前進行匹配測試。

例子:

找到每個禁用按鈕的下一個兄弟並更改其文本“此按鈕已禁用”。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>next demo</title>
  <style>
  span {
    color: blue;
    font-weight: bold;
  }
  button {
    width: 100px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div><button disabled="disabled">First</button> - <span></span></div>
<div><button>Second</button> - <span></span></div>
<div><button disabled="disabled">Third</button> - <span></span></div>
 
<script>
$( "button[disabled]" ).next().text( "this button is disabled" );
</script>
 
</body>
</html>

演示:

找到每個段落的下一個兄弟。隻保留類"selected" 的那些。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>next demo</title>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>Hello</p>
<p class="selected">Hello Again</p>
<div><span>And Again</span></div>
 
<script>
$( "p" ).next( ".selected" ).css( "background", "yellow" );
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 .next()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。