$(function () { // 网站兼容提示 if ( navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.split(";")[1].replace(/[ ]/g, "") == "MSIE6.0" || navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.split(";")[1].replace(/[ ]/g, "") == "MSIE7.0" || navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.split(";")[1].replace(/[ ]/g, "") == "MSIE8.0" ) checkBowerTip(); $('#checkBowerTip').click(function () { $(this).hide(); }); layui.use(['layer', 'form']); }); //=======================================通用JS======================================== function checkBowerTip() { var $checkbower = $('
' + '当前浏览器版本过低,影响整体的访问体验。建议升级到IE9以上版本,或者切换极速模式,或者下载360浏览器谷歌浏览器' + '' + '
'); $('body').prepend($checkbower); $checkbower.width(window.innerWidth); $checkbower.find('img').eq(0).click(function () { $checkbower.addClass('hidden'); }); if ($checkbower.width() < 400) $checkbower.css({ 'font-size': '12px', 'padding': '5px 0', 'text-align': 'left' }).find('span').eq(0).css('padding-right', '10px') }