判断手机端,PC端不同跳转
Posted cc_Me
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断手机端,PC端不同跳转相关的知识,希望对你有一定的参考价值。
1. wap端打开pc端地址,强制跳转到wap地址
var ua = window.navigator.userAgent.toLowerCase();
if (!(/android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent))) {
window.location.href = "http://" + window.location.host+"/list";
}
2. pc端打开wap端地址,强制跳转到pc端地址
var ua = window.navigator.userAgent.toLowerCase();
if (ua.indexOf("iphone") > 0 || ua.indexOf("android") > 0) {
window.location.href = "http://" + window.location.host + "/wap/list";
}
以上是关于判断手机端,PC端不同跳转的主要内容,如果未能解决你的问题,请参考以下文章