PC端与移动端网站的识别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PC端与移动端网站的识别相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PC端与移动端网站的识别</title>
<script type="text/javascript">
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsandroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";

if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
window.location.href="http://wap.zwzgj888.com";  //移动端网站
} else {
window.location.href="http://www.zwzgj888.com";   //PC端网站
}
}

browserRedirect();


</script>

</head>

以上是关于PC端与移动端网站的识别的主要内容,如果未能解决你的问题,请参考以下文章

自动检测,pc端与移动端打开网页时跳转到对应的地址

js判断移动端与pc端

移动端与PC端页面布局区别

判断pc端与移动端

网站自动识别PC端或者移动端

检测当前运行环境——移动端与PC端。