如何检查.Attr元素是否具有特定类?

时间:2017-03-26 13:46:05

标签: javascript jquery

这是HTML结构:

<div data-step="1"></div>
<div data-step"2" class="active"></div>

沿着这些方向的东西(以下显然是错误的,它只是提供一个想法)

if($("div").attr("data-step", "2").hasClass("active")) {
  //do this...
}

1 个答案:

答案 0 :(得分:3)

使用attribute equals selector获取具有特定属性值的元素。使用attr()方法,它只需设置属性值并返回jQuery元素对象。

if($("div[data-step='2']").hasClass("active"))

// or simply combine the class with selector and
// check existance simply by checking its length
if($("div[data-step='2'].active").length)