<script> /* 判斷哪一個端 */ function isMobile() { if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) return true; else return false; } //地址本身修改爲你的手機端地址 if (isMobile() !== false){ /* 若是爲手機端 */ /* window.location.href = "http://www.baidu.com"; */ $(".screen").css("display","block") $("#isphone").val(window.screen.width) document.write('<link href="<%=contextPath %>/toupiaoset/dhpstatic/css/phoneself1.css" type="text/css" rel=stylesheet>'); /* 引入手機端css */ }else{ /* 若是爲電腦端 */ $("#isphone").val('0') $(".layui-layout-admin .layui-header").css("display","block") } </script>