$(".menu").mouseover(function(){
$(this).find("ul").show();
});
$(".menu").mouseout(function(){
$(this).find("ul").hide();
});
$(".nav").mouseover(function(){
$(this).find(".d1").show();
});
$(".nav").mouseout(function(){
$(this).find(".d1").hide();
});
$(".bt").mouseover(function(){
$(this).find(".fun").show();
});
$(".bt").mouseout(function(){
$(this).find(".fun").hide();
});
- 1 回答
- 0 关注
- 1300 浏览
添加回答
举报
0/150
提交
取消