$(function() { function BrowserType() { var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var isOpera = userAgent.indexOf("Opera") > -1; //判断是否Opera浏览器 var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1 && !isOpera; //判断是否IE浏览器 var isEdge = userAgent.indexOf("Windows NT 6.1; Trident/7.0;") > -1 && !isIE; //判断是否IE的Edge浏览器 if (isIE) { var reIE = new RegExp("MSIE (\\d+\\.\\d+);"); reIE.test(userAgent); var fIEVersion = parseFloat(RegExp["$1"]); if (fIEVersion < 9) { alert("浏览器版本过低,请升级或更换浏览器(谷歌、火狐等)") return false; } //IE版本过低 } else { new WOW().init(); } if (isEdge) { alert("浏览器版本过低,请升级或更换浏览器(谷歌、火狐等)") return false; } else { new WOW().init(); } } BrowserType() // 浏览器是否为ie // 二级导航不超出屏幕 var navLeft = $(".nav>ul").offset().left; // nav>ul 到左边窗口距离 var navWidth = $(".nav>ul").width(); // nav>ul 的宽度 var liWidth = 280; // nav>ul>li.eq(i)>ul 的宽度 $(".nav>ul>li").each(function(index, item) { var liLeft = $(this).offset().left; // nav>ul li 到左边窗口距离 if ($(this).find("ul").html() != null) { if (liLeft + ($(this).width() / 2) - navLeft >= liWidth / 2) { if (navWidth - ($(this).width() / 2 + liLeft - navLeft) > liWidth / 2) { $(this).find("ul").css("left", (-1) * (liWidth - $(this).width()) / 2); } else { $(this).find("ul").css("right", '0'); } } else { $(this).find("ul").css("left", -1 * (liLeft - navLeft)); } } }) $(".nav>ul>li").hover(function() { $(this).stop(false, true).addClass("on"); $(this).children("ul").stop(false, true).slideDown(300); }, function() { $(this).stop(false, true).removeClass("on"); $(this).children("ul").stop(false, true).slideUp(300) }) $(".nymain .leftNav>ul>li>span").click(function() { $(this).parent().stop().toggleClass("on").siblings("li").removeClass("on"); $(this).siblings("ul").stop().slideToggle(300).parent().siblings().find("ul").stop().slideUp(); }) })