jQuery :text 选择器

jQuery 参考手册 选择器jQuery 参考手册 选择器

 

1. 范例

选择 type="text" 的 <input> 元素:

$(":text")

我要试一试

 

2. 定义和用法

:text 选择器选取类型为 text 的 <input> 元素。

语法

$(":text")

jQuery 参考手册 选择器jQuery 参考手册 选择器

1. 范例:选择 type="password" 的 <input> 元素。2. 定义和用法::password 选择器选取类型为 password 的 <input> 元素。语法:$(":password")。