集册 jQuery 参考教程 jQuery [attribute!=value] 选择器

jQuery [attribute!=value] 选择器

Xebcnor     最近更新时间:2019-10-11 03:01:32

301

jQuery [attribute!=value] 选择器

jQuery 选择器 jQuery 选择器

实例

选取所有 class 属性值为 "intro" 的 <p> 元素:

$("p[class!='intro']")

运行实例

定义和用法

[attribute!=value] 选择器选取每个不带有指定属性和值的元素。

带有指定的属性,但不带有指定的值的元素,也会被选择。

语法

$("[attribute!='value']")

参数 描述
attribute 必需。规定要查找的属性。
value 必需。规定要查找的值。

jQuery 选择器 jQuery 选择器