- 选择被选中的单选框:
$(':raido:checked')
- 选择被选中的复选框:
$(':checkbox:checked')
- 选择被选中的option:
$('option:selected')[0]
- 选择禁用的表单元素:
$(':input:disabled')
- 选择未被禁用的表单元素:
$(':input:enabled')
标签:jquery,checked,option,表单,选择,选中,input,选择器
来源: https://www.cnblogs.com/zzjs/p/16353142.html