$(function() { //移动端导航 $(".phoneNav").click(function() { $(".index_nav").animate({ "left": "0%" }, 300); $('html,body').css({ "overflow": "hidden", "position": "fixed", "top": "0", "left": "0" }) }); var f = 0; $(".one").click(function(event) { event ? event.stopPropagation() : event.cancelBubble = true; $(".select").slideUp() $(this).find(".select").slideToggle(); }) //判断屏幕宽度小于768像素的时候执行代码 if ($(window).width() < 768) { //加移动端图片 var appendHtml = ''; $(".index_nav .Ul>li:first-child ").append(appendHtml); $(".ul a").click(function() { $(".ul").hide(); }) } //移动端关闭按钮 $(".phoneX").click(function() { $(".index_nav").animate({ "left": "-100%" }, 300); $('html,body').css({ "overflow": "auto", "position": "static" }) }); $(".index_nav .Ul .one").each(function(e) { if ($(this).find(".select").children("li").length == 0) { $(this).find(".select").remove(); } }) $(".breadCrumb span a:last").css("color", "#8e050c"); if(screen.width < 768){ $(".easysite-jump-page").hide(); }else{ $(".easysite-jump-page").show(); } });