WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何在 jQuery 中循环遍历具有相同类的元素

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery each() 方法

您可以简单地使用 jQuery each() 方法来遍历具有相同类的元素并根据特定条件执行一些操作。

以下示例中的 jQuery 代码将遍历每个 DIV 元素并仅突出显示那些为空的元素的背景。 让我们试一试:

<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Loop Through Elements with the Same Class</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<style>
    .box{
        min-height: 20px;
        padding: 15px;        
        margin-bottom: 10px;
        border: 1px solid black;
    }
</style>
<script>
$(document).ready(function(){
    // 使用类框循环遍历每个 div 元素
    $(".box").each(function(){
        // Test if the div element is empty
        if($(this).is(":empty")){
            $(this).css("background", "yellow");
        }
    });
});
</script>
</head>
<body>
    <div class="box">A Div box</div>
    <div class="box"></div>
    <div class="box extraclass">Another Div box</div>    
    <div class="box">One more Div box</div>
    <div class="box extraclass"></div>
</body>
</html>

在上面的示例中,$(this) 表示循环中的当前 DIV 元素。 您可以将 jQuery 方法直接附加到 $(this) 以执行操作。


FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements