jQuery [attribute] 选择器

实例

选择每个具有 id 属性的元素:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("[id]").css("background-color", "yellow");
  8. });
  9. </script>
  10. </head>
  11. <body>
  12. <h2>欢迎来到我的主页</h2>
  13. <p class="intro">我的名字叫 Donald.</p>
  14. <p>我居住在 Duckburg.</p>
  15. <p>我最好的朋友是 Mickey.</p>
  16. 谁是你最喜欢的:
  17. <ul id="choose">
  18. <li>Goofy</li>
  19. <li>Mickey</li>
  20. <li>Pluto</li>
  21. </ul>
  22. </body>
  23. </html>

定义与用法

[attribute] 属性选择器选择具有指定属性的每个元素。


语法

  1. $("[attribute]")
参数描述
attribute必填。指定要查找的属性

分类导航