开发者

jQuery CSS selector question

Whats wrong with this CSS selector i'm using in jQuery? Trying to select all tr's within a table of ID "itable" without a class of "mod" where its possible for multiple classes to be on eac开发者_如何学Goh tr.

if($('#itable tr:not[class~=mod]').length == 0){
    //something
}


if($('#itable tr:not(.mod)')[0]){
    //something
}


#itable tr:not(.mod)


youre using the :not selector the wrong way http://docs.jquery.com/Selectors/not#selector

if($('#itable > tr:not(.mod)').length == 0){
    //something
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜