81463166 2020-05-08
表单对象的属性过滤器通过表单元素的状态属性(例如选中,不可用等状态)匹配元素
:checked
说明:匹配所有选中的被选中元素
示例:$("input:checked") //匹配所有被选中的input元素
:disabled
说明:匹配所有不可用元素
示例:$("input:disabled") //匹配所有不可用的input元素
:enabled
说明:匹配所有可用元素
示例:$("input:enabled") //匹配所有可用的input元素
:selected
说明:匹配所有选中的option元素
示例:$("select option:selected") /匹配所有选中的option元素
<table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%&qu