父母上课时排除

时间:2010-11-04 11:28:17

标签: jquery

当父对象具有cetain类时,尝试从匹配集中排除一组元素。

目前的解决方案是:

$("#pages li a").not($(this).parent().hasClass('no-script'))

但这不符合我的预期,我做错了什么?

1 个答案:

答案 0 :(得分:13)

您想在父级上使用:not() selector,如下所示:

$("#pages li:not(.no-script) a")

如果有多个级别,请使用child selector (>)确保它是当前级别的父级:

$("#pages li:not(.no-script) > a")