$(document).ready(function () { //判断是否存在ul $(".wc-menu li:has(ul)").hover(function () { //$(this) 代表.navmenu li $(this).children("a").addClass("move"); if ($(this).find("li").length > 0) { //显示下拉菜单 $(this).children("div").stop(true, true).show() } }, function () { $(this).children("a").removeClass("move"); //隐藏下拉菜单 $(this).children("div").stop(true, true).hide() }); }); $(".possplit").text("/"); $(".intro").each(function (k, v) { $(v).html($(v).text()) }) var _len = $(".slide-nav-ul li").length; if (_len == 0) { $(".main-left").remove(); $(".main-right").css({ "width": "100%", "float": "none" }); } if ($(".right-nr table").length > 0) { $.each($(".right-nr table"), function (k, v) { $(v).removeAttr("style"); $(v).wrap("
"); }); } //手机没有二级的箭头隐藏 $(".dropdown").each(function (k, v) { if ($(this).find("li").length == 0) { $(this).find(".fa-angle-down").hide(); } }); //底部友情链接 $("#links").change(function () { var _val = $(this).val(); if (_val.length > 0) { window.open($(this).val()); } }); $(function () { var w = $(window).width(); if (w > 991) { $(".side-nav-panel").show(); } $(window).resize(function () { w = $(window).width(); if (w > 991) { $(".side-nav-panel").show(); } }); $(".nav_name").click(function () { $(".side-nav-panel").slideToggle(150); }); }) //外链加上新窗口打开 $("a").each(function () { var href = $(this).attr("href"); if (href != "" && href != undefined) { if (href.indexOf("http://") > -1 || href.indexOf("https://") > -1) { $(this).attr("target", "_blank"); } else { $(this).attr("target", "_self"); } } else { $(this).attr("target", "_self"); } });