使用jQuery,您可以轻松选择多个元素。您可以通过以下方法选择多个元素,例如<h1>和<p>,
$("h1, p")
您可以尝试运行以下代码,以了解如何使用jQuery选择多个元素-
<html> <head> <title>jQuery Example</title> <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("h1, p").css("color", "green"); }); </script> </head> <body> <div> <h1>Heading</h1> <p>This is demo text.</p> </div> </body> </html>