< a href=""
;a href="">
名称 | 说明 | 解释 |
:input | 匹配所有 input, textarea, select 和 button 元素 | 查找所有的input元素: $(":input") |
:text | 匹配所有的文本框 | 查找所有文本框: $(":text") |
:password | 匹配所有密码框 | 查找所有密码框: $(":password") |
:radio | 匹配所有单选按钮 | 查找所有单选按钮 |
:checkbox | 匹配所有复选框 | 查找所有复选框: $(":checkbox") |
:submit | 匹配所有提交按钮 | 查找所有提交按钮: $(":submit") |
:image |
匹配所有图像域 |
匹配所有图像域: $(":image") |
:reset | 匹配所有重置按钮 | 查找所有重置按钮: $(":reset") |
:button | 匹配所有按钮 | 查找所有按钮: $(":button") |
:file | 匹配所有文件域 | 查找所有文件域: $(":file") |
名称 | 说明 | 解释 |
:enabled |
匹配所有可用元素 |
Find all available input elements: $("input:enabled") |
:disabled | Match all unavailable elements | Find all disabled input elements: $("input:disabled") |
:checked | Matches all selected selected elements (check boxes, radio buttons, etc., excluding options in select) | Find all checked checkbox elements: $("input:checked") |
:selected | Matches all selected option elements | Find all selected option elements: $("select option:selected") |