我有传承功能,可以揭示一个因素。 这一新内容中有一些重叠之处,如果我接着把眼光放在新内容上,因为 cur子已经不再是表面,而这个要素本身就隐藏起来,然后立即重新出现,因为 cur子再次倒。 如果 cur子超越了新内容(这是主要形象重叠的新要素的唯一部分),我需要 some然无视 mo子的指挥。
它是解释的trick笑,但这里是法典:
jquery (有一点点不确定如何做)
$("div > img").hover( function() {
$(this).parent().find("span").slideDown(100);
}, function() {
if (user is hovering over the span) {
// do nothing
} else {
$(this).parent().find("span").slideUp(100);
}
});
html
<div>
<img src="/images/icons/dm.jpg" width="54" height="54" />
<span><strong>Test</strong><br />test2<img src="/images/arrow.png" width="19" height="17" /></span>
</div>