jquery跳过具有特定css类的表

时间:2012-05-17 18:17:45

标签: javascript jquery css jquery-selectors

我正在使用$("table").each(function()

遍历表格

如何跳过具有css类“ NotThisClass

的表格
$("table").each(function(){
  if( $(this:not('.NotThisClass')))
    {
      // Do Stuff
    }
  }

不工作,也不是,

if( $(this).not('.NotThisClass'))

正确的语法是什么?

3 个答案:

答案 0 :(得分:7)

$("table").not('.NotThisClass').each(function() {
    //Do your stuff!
});

答案 1 :(得分:4)

试试这个:

$("table:not(.NotThisClass)").each(function ()
{
  // Do Stuff
});

答案 2 :(得分:1)

$("table").each(function(){
  if(!$(this).hasClass('NotThisClass')))
    {
      // Do Stuff
    }
  }