如何在 jQuery 中使用多个类选择一个元素?
要使用多个类来选择一个元素,请执行以下操作。这里,x、y 和 z 是我们的类,
$('.x.y.z')
你可以尝试运行以下代码,来学习如何在 jQuery 中使用多个类选择一个元素
<html> <head> <title>jQuery Selector Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $(".one.two").css("background-color", "grey"); }); </script> </head> <body> <div class = "one two" id="div"> <p>This is first division of the DOM.</p> </div> <div class = "three" id = "div3"> <p>This is third division of the DOM</p> </div> </body> </html>
广告