JQUERY选择器,选取除了此ID外父元素中所有的元素

2024年11月23日 10:56
有4个网友回答
网友(1):

$(".depth etc").each(function(i) {
var obj[i] = $(this).children("dd[id!='man_2']");

});

这样数组obj中就存储了你要的那个

了 。

网友(2):

$(".depthetc dd[id!='man_2']")
这就是了

网友(3):

$(".depth etc").find("dd").not($("#man_2"));

not这个方法 有的时候和好用的 呵呵。。。 如果 排除的元素是已知的 ,应该比循环好用点

网友(4):

$(".depth etc dd[id!='man_2']")