当你悬停它时,我想隐藏一个 dom 元素。我想显示它下面的 div。问题是当第一个元素隐藏时,jquery 不再看到悬停并将悬停 div 带回来。所以 div 切换得非常快。
当您的鼠标超出 div 区域时,我想要“前面”。
<div class="blockLong front" ></div>
<div class="blockLong"></div>
div 以绝对位置放置在eatchother 上,并且大小相同
这是jQuery:
$('.front').hover( function()
{
$(this).hide();
});
$('.front').mouseout( function()
{
$(this).show();
});