jQuery [attribute$=value] 选择器

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

 

1. 范例

选择所有带有 id 属性且属性值以 "header" 结尾的元素:

$("[id$=header]")

我要试一试

 

2. 定义和用法

[attribute$=value] 选择器选取每个带有指定属性且以指定字符串结尾的元素。

语法

$("[attribute$=string]")
参数 描述
attribute 必需。规定要查找的属性。
string 必需。规定属性值以其结尾的字符串。

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

Query :input 选择器::input 选择器选取表单元素。该选择器同样适用于 <button> 元素。语法:$(":input")。