如何使用多个"属性等于"选择器在jquery?

时间:2016-09-21 09:22:37

标签: javascript jquery html attributes element

如果要选择具有1个属性的jquery元素,该属性等于值很简单:

$(".element[attribute1='true']").hide();

但是如果你想选择一个具有2个相同属性的元素呢?

$(".element[attribute1='true', attribute2='false']").hide();

那不会奏效。

1 个答案:

答案 0 :(得分:3)

您可以在jquery中使用多个Attribute Equals Selector [name=”value”],例如底部代码:

$(".element[attribute1='true'][attribute2='false']").hide();