$(".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(); });
Caballarii
相关分类