jquery三个DIV鼠标放上去隐藏显示的问题

<divid="myhead"style="width:200px;height:50px;">所有动物(一直显示)</div><divid="mycontent"sty... <div id="myhead" style=" width:200px; height:50px;">所有动物(一直显示)</div>
<div id="mycontent" style=" width:200px; height:400px;">猫(隐藏的)</div>
<div id="mylist" style=" width:300px; height:200px;">大猫小猫(隐藏的)</div>
-----------------------------------------------------------------------
1.鼠标放在myhead层 mycontent层显示。
2.鼠标离开myhead层 如果鼠标放在mycontent层,mylist层显示;如果没放在mycontent层则mycontent层隐藏。
3.鼠标离开mycontent层放在mylist层都显示,鼠标离开mylist层,mycontent层和mylist层隐藏。
请问用jquery该怎么写?
展开
 我来答
_vea_天_
2013-09-21
知道答主
回答量:30
采纳率:0%
帮助的人:14万
展开全部
$("#myhead").mouseover(function(){
$("#mycontent").show();
}).mouseout(function(e){
if(e.clientX >= $("#mycontent").offset().left && e.clientX < ($("#mycontent").offset().left + $("#mycontent").width())
&& e.clientY >= $("#mycontent").offset().top && e.clientY < ($("#mycontent").offset().top + $("#mycontent").height())){
$("#mylist").show();
}else{
$("#mycontent").hide();
$("#mylist").hide();
}
$("#mycontent").mouseout(function(e){
if(e.clientX >= $("#mycontent").offset().left && e.clientX < ($("#mycontent").offset().left + $("#mycontent").width())
&& e.clientY >= $("#mycontent").offset().top && e.clientY < ($("#mycontent").offset().top + $("#mycontent").height())){
return;
}else{
$(this).hide();
}
$("#mylist").mouseout(function(){
$(this).hide();
$("#mycontent").hide();
});
});
});
xqqlxm
2013-09-22 · TA获得超过338个赞
知道小有建树答主
回答量:533
采纳率:100%
帮助的人:233万
展开全部
toggle(fn1,fn2);用这个方法 可以实现你的效果的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式