内容目录
jQuery的:button选择器用于匹配所有的按钮元素,将其封装为jQuery对象并返回。
这里的按钮指的是所有的button标签(不区分type)以及type为button
的input标签:
<input type="button" />
<button type="button"></button>
<button type="submit"></button>
<button type="reset"></button>
语法
jQuery( ":button" )
返回值
返回封装了所有按钮元素的jQuery对象。
这里的按钮元素包括所有的button标签(不区分type),以及type为button
的input标签。
如果找不到任何相应的匹配,则返回一个空的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>
现在,我们查找所有的普通按钮(type="button"的input标签)和button标签,即可编写如下jQuery代码:
// 选择了id分别为n3、n16、n17、n18的4个元素
$(":button");
如果你只想匹配type为button
的input标签,你可以编写如下jQuery代码:
// 选择了id为n3的一个元素
$("input:button");
0 条评论
撰写评论