我有两个 div,一个用于简短摘要,一个用于长摘要。
当我在简短摘要上“鼠标悬停”时,简短摘要消失,而长摘要出现。
当我从长摘要中“鼠标移出”时,它应该消失并且应该出现简短摘要。
问题是,当我仍在长摘要的边界内但不在排序摘要的位置时,会发生 mouseout 事件
代码:
<head>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.js"></script>
<script>
function show(Fdiv) {
$(Fdiv).css("display", "none");
$(Fdiv).next().css("display", "inline");
}
function hide(Sdiv) {
$(Sdiv).css("display", "none");
$(Sdiv).prev().css("display", "inline");
}
</script>
</head>
<body>
<div onmouseover="show(this)"> Sort summary <br /> Second Row</div>
<div onmouseout="hide(this)" style="display:none"> Long Summary <br /> Second Row<br /> Third Row <br /> Fourth Row</div>
</body>
</html>