$(".depth etc").each(function(i) {
var obj[i] = $(this).children("dd[id!='man_2']");
});
这样数组obj中就存储了你要的那个
$(".depthetc dd[id!='man_2']")
这就是了
$(".depth etc").find("dd").not($("#man_2"));
not这个方法 有的时候和好用的 呵呵。。。 如果 排除的元素是已知的 ,应该比循环好用点
$(".depth etc dd[id!='man_2']")