我创建了一个用于在鼠标悬停时显示 div 的脚本。
<script type="text/javascript">
$(document).ready(function() {
$("a.prikaziDiv").hover(
function() {
var $sibling = $(this).siblings('div.prikazano').show(); // get the sibling div and show it
$('div.prikazano').not($sibling).hide(); // hide the other divs
}, function() {
$(this).siblings('div.prikazano').delay(999).fadeOut(0);; // get the sibling div and hide it after .333 seconds
});
});
</script>
<a class="prikaziDiv" href="#">SHOW</a><div class="prikazano" style="display:none;">aa</div>
它可以工作,但是当我将鼠标悬停在“SHOW”链接上时,我将光标放在该 div 上,但它消失了。我不想让 div 消失。
有人能帮我吗?
谢谢!