如何检查 id 为 #showLogo 的 div 是否存在于父 li 中,其类为“image-rollover”?我不能使用 children().length,因为此列表项的子项数量会有所不同。有没有办法直接根据div的id进行检查?
我需要的是这样的:
$('li.image-rollover a').mouseover(function() {
if ($(this).children('#showLogo')) {
showLogo();
} else {
hideLogo();
}
});
这可能吗?