表單匹配: :input 匹配: <input ... /> <select></select> <textarea></textarea> <button></button>
:text 匹配 <input type="text" /> :password 匹配 <input type="password" /> :radio 匹配 <input type="radio" /> :checkbox 匹配 <input type="checkbox" /> :submit 匹配 <input type="submit" /> :reset 匹配 <input type="reset" /> :image 匹配 <input type="image" /> :file 匹配 <input type="" /> :button 匹配 <button></button> :enabled 匹配 所有可用的 input 元素 :disabled 匹配 所有不可用的 input 元素 :checked 匹配 所有選中的被選中復選框、單選框 :selected 匹配 所有選中的 option 元素
|