没有类的Javascript / Select元素

时间:2015-01-12 18:00:42

标签: javascript select

我有一个Calendar-table(创建为Javascript对象)。它的第一行涉及前一天和当月的日子。我用Class" Out"标记了当月的日子。 现在我需要选择上个月的日子才能发表声明       如果{顶部表行的单元格没有Class" Out",我不想显示 } 我怎么能用原生Javascript做到这一点?换句话说,我似乎需要在JQuery中使用 .not()的模拟。

1 个答案:

答案 0 :(得分:2)

:not(simple-selector)实际上是一个有效的选择器,您可以将其传递给querySelector(以及is pretty well supported too

if (!document.querySelector(".your-table tr:first-child td:not(.Out)") {
  // Then we need to hide that row
}