jQuery :checked 选择器

实例

选择所有选中的元素(复选框或单选按钮):

  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. $(":checked").wrap("<span style='background-color:red'>");
  8. });
  9. </script>
  10. </head>
  11. <body>
  12. <form action="">
  13. 姓名: <input type="text" name="user"><br>
  14. 我有一辆自行车: <input type="checkbox" name="vehicle" value="Bike"><br>
  15. 我有一辆汽车: <input type="checkbox" name="vehicle" value="Car"><br>
  16. 我有一架飞机: <input type="checkbox" name="vehicle" value="Airplane"><br>
  17. <input type="submit">
  18. </form>
  19. <p>注意:我们使用 jQuerys .wrap 方法高亮显示所选元素,因为 Firefox 不支持复选框的背景色。</p>
  20. </body>
  21. </html>

定义与用法

:checked 选择器选择所有选中的复选框或单选按钮。


语法

  1. $(":checked")

分类导航