- 0133技术站
- 联系QQ:18840023
- QQ交流群

- 微信公众号

jQuery :checkbox 选择器
定义和用法
:checkbox 选择器选取带有 type=checkbox
的 input 元素。
语法
$(":checkbox")
<script> $(document).ready(function(){ $(":checkbox").wrap("<span style='background-color:pink' />"); }); </script> </head> 数学: <input type="checkbox" name="vehicle" value="math"><br> 语文: <input type="checkbox" name="vehicle" value="chinese"><br> 英语: <input type="checkbox" name="vehicle" value="english"><br> <input type="submit">
点击 "运行实例" 按钮查看在线实例
效果图:
推荐手册