如何在 jQuery 中查找某个属性是否适用于选中的项目?
要查找某个属性是否存在于 jQuery 中的选定项目,请使用 hasAttribute() 方法。
示例
你可以尝试运行以下代码,了解如何查找某个属性是否存在
<!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').on('click', function() { if (this.hasAttribute("myattr")) { alert('True - myattr attribute exists') } else { alert('False - myattr attribute does not exist') } }) }); </script> </head> <body> <button class='button' style='color: green' myattr='demo'> Button One </button> <button class='button'> Button Two </button> </body> </html>
广告