$("#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();
});
});
});
toggle(fn1,fn2);用这个方法 可以实现你的效果的