JS 跳转对应的手机页面精简版
程序员文章站
2024-01-26 22:50:22
...
当手机站和PC站都共用一个数据库的时候,可以使用下面的JS代码进行跳转。
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))) {
if (window.location.href.indexOf("?mobile") < 0) {
try {
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
var path=location.pathname;
window.location.href = "http://m.onestopweb.cn"+path+"?www.onestopweb.cn";
}
} catch (e) {}
}
}
我已经完善好多次了,有不同的声音请留言。多谢!!!