内容目录
jQuery的:reset选择器用于匹配所有的重置按钮元素,将其封装为jQuery对象并返回。
重置就是type为reset
的input或button标签:<input type="reset">
或<button type="reset"></button>
。
语法
jQuery( ":reset" )
返回值
返回封装了所有重置按钮元素的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>
<textarea id="n15"></textarea>
<button id="n16" type="button">Button</button>
<button id="n17" type="submit">Submit</button>
<button id="n18" type="reset">Reset</button>
</form>
</div>
现在,我们查找所有的重置按钮,即可编写如下jQuery代码:
// 选择了id分别为n10、n18的两个元素
$(":reset");
0 条评论
撰写评论