腾讯首页分辨手机端与pc端代码

时间:2022-05-04 11:44:16

腾讯首页分辨手机端与pc端代码

  自己在做网页的时候在腾讯网首页借鉴的代码.

  代码:

 <!-- 移动适配JS脚本 -->
<script type="text/javascript">
if (window.location.toString().indexOf('pref=padindex') != -1) {
} else {
if (/AppleWebKit.*Mobile/i.test(navigator.userAgent) || /\(Android.*Mobile.+\).+Gecko.+Firefox/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|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href="https://www.xiyixu.top/mobile_index.html";
} else if (/iPad/i.test(navigator.userAgent)) {
//window.location.href=""
} else {
window.location.href="https://www.xiyixu.top/simple_index.html"
}
} catch (e) {}
}
}
}
</script><!--[if !IE]>|xGv00|6a478dd274c352466ec1a24404f6e978<![endif]-->

见解:

if (/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent))
此句判断打开网页的设备是否为Android|Windows Phone|webOS|iPhone|iPod|这些设备,如果是,则指向一个新的网页,如果不是则继续执行.

代码源自腾讯网首页

2018年10月9日18:7:16