jQuery :button 选择器

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

 

1. 范例

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

$(":button")

我要试一试

 

2. 定义和用法

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

语法

$(":button")

 

3. 提示和注释

提示:通过该选择器使用 input:button 不会选择 <button> 元素。

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

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