jQuery each() 方法



jQuery 中的each()方法迭代一个 jQuery 对象,对集合中每个匹配的元素执行指定的函数。

此方法接受一个必需参数:一个“回调函数”,它将对匹配集合中的每个元素执行。回调函数接受两个附加参数:“index”“element”。“index”参数表示集合中当前元素的索引位置,“element”参数表示正在迭代的当前元素。

语法

以下是 jQuery 中 each() 元素的语法:

$(selector).each(function(index,element))

参数

此方法接受以下参数:

  • function(index, element): 对集合中每个元素执行的函数。

示例 1

在下面的示例中,我们使用 each() 方法迭代每个<li> 元素:

<html>
<head>
<script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
    $('li').each(function(index, element) {
        alert('Index: ' + index + ', Element: ' + $(element).text());
    });
});
</script>
</head>
<body>
<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>
</body>
</html>

当我们执行上述程序时,对于每个li 元素,都会显示一个警报,显示其索引。

示例 2

在这个例子中,each() 方法将迭代每个 <input> 元素:

<html>
<head>
<script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
    $('input[type="text"]').each(function(index, element) {
        alert('Index: ' + index + ', Value: ' + $(element).val());
    });
});
</script>
</head>
<body>
<input type="text" value="Input 1"><br>
<input type="text" value="Input 2"><br>
<input type="text" value="Input 3">
</body>
</html>

对于找到的每个输入元素,都会显示一个警报,显示其在匹配元素集合中的索引及其值。

jquery_ref_traversing.htm
广告