$(function(){ var screenwidth=$(window).width(); //移动端导航按钮点击1280 btn=document.getelementbyid("nav_btn"); btn.onclick=function(){ if(btn.classname.indexof("hide")>-1){ btn.classlist.remove("hide"); btn.classlist.add("show"); $(".nav .center").stop().slidedown(300); $("body").css({ "position":"fixed" }); }else{ btn.classlist.remove("show"); btn.classlist.add("hide"); $(".nav .center").stop().slideup(300); $("body").css({ "position":"relative" }); } }; $(".nav").on("click",".center>li>span",function(){ $(this).siblings("ul").stop().toggle(); $(this).parent('li').siblings().find('ul').stop().slideup(); }); //我们的业务栏目切换 $(".job_bottom .tit").on("click","li",function(){ $(this).addclass("on").siblings().removeclass("on"); var index=$(this).index(); $(".job_bottom .cnt>div:eq("+index+")").show().siblings().hide(); }); });