// pc端、手机端网页切换
function isMobile() {
if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))
return true;
else
return false;
}
if (isMobile() !== false)
window.location.href = "http://localhost:8000";
})
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<script>
function isMobile() {
if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))
return true;
else
return false;
}
if (isMobile() !== false){
window.location.href = "http://shenyuxf.top/zhongsheng";
}else{
window.location.href = "http://shenyuxf.top:3030";
}
</script>
</head>
<body>
</body>
</html>
//URL跳转
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index</title>
</head>
<body>
<h1>Not Found</h1>
<p>The requested URL /sdfd was not found on this server.</p>
</body>
<script>
function isMobile() {
if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))
return true;
else
return false;
}
if (window.location.href.indexOf("www.essenhj.cn") > -1 ||window.location.href.indexOf("www.essenhj.cn/essenhj/#/") > -1) {
if (isMobile() !== false) {
window.location.href="http://www.essenhj.cn/essenhj";
} else {
window.location.href="http://www.shenyuxf.top:3080";
}
} else if (window.location.href.indexOf("www.qjkeji.cn") > -1) {
window.location.href="http://www.qjkeji.cn/qjkeji/";
}
</script>
</html>