如何在 jQuery 中检查元素是否具有某一类?
hasClass() 方法用来检查元素在 jQuery 中是否具有某一类。jQuery 是一个 JavaScript 库,旨在简化 JavaScript 的开发。它可以减少开发时间
范例
你可以尝试运行以下代码,检查元素是否在 jQuery 中具有某一类 −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert($("h1").hasClass("myclass")); }); }); </script> <style> .myclass { color: blue; } </style> </head> <body> <h1 class="myclass">Heading</h1> <p>This is demo text.</p> <button>Check: The h1 element has 'myclass' class?</button> </body> </html>
广告