- 0133技术站
- 联系QQ:18840023
- QQ交流群
- 微信公众号
jQuery :reset 选择器
定义和用法
:reset 选择器选取带有 type=reset
的 button 和 input 元素。
提示:通过该选择器使用 input:reset
不会选取 button 元素。
语法
$(":reset")
<script> $(document).ready(function(){ $(":reset").css("background-color","pink"); }); </script> </head> <button type="button">按钮</button> <input type="reset" value="重置"> <input type="submit" value="提交"><br>
点击 "运行实例" 按钮查看在线实例
效果图:
推荐手册