通过代码实现自动判断是手机端还是PC端跳转

时间:2021-12-25 02:53:45
 <!-- 2017/09/13 跳转手机页面 start by 小鬼PSer -->
<meta name="mobile-agent" content="format=html5;url=http://forbag.inrn.net/kh1m.aspx">
<script type="text/javascript">
var userAgentInfo = navigator.userAgent;
if (userAgentInfo.indexOf("Android") > 0 || userAgentInfo.indexOf("iPhone") > 0 || userAgentInfo.indexOf("SymbianOS") > 0 || userAgentInfo.indexOf("Windows Phone") > 0 || userAgentInfo.indexOf("iPod") > 0 || userAgentInfo.indexOf("iPad") > 0)
{
window.location.href = "http://forbag.inrn.net/kh1m.aspx";
}else {
}
</script>
<!-- 2017/09/13 跳转手机页面 end by 小鬼PSer -->

将以上代码插入到主页源文件的区域之间,当用户在手机端输入网址http://forbag.inrn.net会直接跳入到http://forbag.inrn.net/kh1m.aspx的网页内容。

通过代码实现自动判断是手机端还是PC端跳转