jQuery 当鼠标进入A区域的时候显示 B区域.当鼠标离开A或B区域之后隐藏B区域
但是还有区域A啊,你离开区域A的时候(同时不在区域B)内,也要隐藏B区域
能把代码上传看看么
可以的
<html>
<head>
<script src="jquery-1.11.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
function a1() {
$("#b").show();
}
function a2() {
$("#b").hide();
}
</script>
</head>
<body>
<div id="a" style="width: 100px; height: 30px;" onmousemove="a1();" onmouseout="a2();">
<!--区域A-->
<div style="width: 50px; height: 30px; float: left;">
part1
</div>
<div style="width: 50px; height: 30px; float: right; background: #000; color: White;">
part2
</div>
</div>
<div id="b" style="width: 100px; height: 50px; background: #ccc; display: none;"
onmouseout="a2();">
区域B
</div>
</body>
</html>