网站PC端跳转M端
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网站PC端跳转M端相关的知识,希望对你有一定的参考价值。
//pc跳转M端 if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){ try{ if(/android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){ //触屏手机版地址 var url = window.location.href.replace("http://www","http://m"); window.location.href = url; }else if(/iPad/i.test(navigator.userAgent)){ //pad版地址 var url = window.location.href.replace("http://www","http://m"); window.location.href = url; }else{ //普通手机版地址 var url = window.location.href.replace("http://www","http://m"); window.location.href = url; } } catch(e){ } }
以上是关于网站PC端跳转M端的主要内容,如果未能解决你的问题,请参考以下文章