jQuery :password 选择器
:password 选择器选取带有 type=password 的 input 元素。
:password 选择器选取带有 type=password 的 input 元素。
:text 选择器选取带有 type=text 的 input 元素。
:input 选择器选取表单元素。
[name="value"][name2="value2"] 是复合属性选择器,需要同时满足多个条件时使用。
[attribute*=value] 选择器选取每个带有指定属性且值包含指定字符串的元素。
[attribute~=value] 选择器选取每个带有指定属性且值包含指定单词的元素。
[attribute^=value] 选择器选取每个带有指定属性且以指定字符串开头的元素。
[attribute|=value] 选择器选取每个带有指定属性的元素,该元素的值等于指定字符串(比如 "en")或以该字符串后跟连接符作为开头的字符串(比如 "en-us")。
[attribute$=value] 选择器选取每个带有指定属性且以指定字符串结尾的元素。
[attribute!=value] 选择器选取每个不带有指定属性和值的元素。