您的位置:首页 > 帝国cms教程

帝国CMS网站自动转换到手机站的方法

2020-07-09 05:19:07 帝国cms教程 219

如果你的网站开启了手机版,并且域名的格式是把前缀转为成m前缀,那么你只需要复制以下代码到你的网站相应的页面即可。

<script type="text/javascript">
var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire");
var browser = navigator.userAgent.toLowerCase();
var isMobile = false;
for (var i=0; i<mobileAgent.length; i++){ if (browser.indexOf(mobileAgent[i])!=-1){ isMobile = true;
var titleurl = location.href;
location.href = titleurl.replace(//,'m');
break; } }
</script>

相关推荐