我有两列,Master 和 Slave,我想检查 Master 中的哪些链接不在 Slave 中,并突出显示它们。
但是,这似乎不起作用:
$(".column2 a").each(function(){
if ($('.column1').find($(this).html()).length == 0) {
alert($(this).html());
$(this).addClass('masterhilite');
}
});
知道为什么这不起作用吗?谢谢