内容目录
jQuery的:password选择器用于匹配所有的密码框元素,将其封装为jQuery对象并返回。
密码框就是type为password
的input标签:<input type="password">
。
语法
jQuery( ":password" )
返回值
返回封装了所有密码框元素的jQuery对象。
如果找不到任何相应的匹配,则返回一个空的jQuery对象。
示例&说明
以下面这段HTML代码为例:
<div id="n1">
<form id="n2">
<input id="n3" type="button" value="Input Button"/>
<input id="n4" type="checkbox" />
<input id="n5" type="file" />
<input id="n6" type="hidden" />
<input id="n7" type="image" />
<input id="n8" type="password" />
<input id="n9" type="radio" />
<input id="n10" type="reset" />
<input id="n11" type="submit" />
<input id="n12" type="text" />
<select id="n13">
<option id="n14">Option</option>
</select>
<passwordarea id="n15"></passwordarea>
<button id="n16">Button</button>
</form>
</div>
现在,我们查找所有的密码框元素,即可编写如下jQuery代码:
// 选择了id为n8的一个元素
$(":password");
0 条评论
撰写评论