如何使用 jQuery 中的 hasClass() 方法?
hasClass() 方法用于检查元素是否具有某个类。你可以尝试运行以下代码以了解如何在 jQuery 中使用 hasClass() 方法 −
范例
<!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>
广告