$(function () { /////////---------头部--导航 $("#navb").on("click","li",function(index,el){ $(this).addClass("active").siblings().removeClass("active") }) // //获取.wrap下面的ul中的li,注册鼠标进入和离开的事件 // $(".rightnav>ul>li").mouseover(function () { // //鼠标进入 // // console.log("鼠标进入") // $(this).children(".tk_banner").stop().fadeIn();//显示 // $(".botmbor").stop().show() // }); // $(".rightnav>ul>li").mouseout(function () { // //鼠标离开 // // console.log("鼠标离开") // $(this).children(".tk_banner").stop().fadeOut();//显示 // $(".botmbor").stop().hide() // }); })