写一段移动端用户通过搜索引擎访问跳转的JS代码
时间: 2024-05-02 12:18:21 浏览: 61
我们可以使用以下JS代码来实现移动端用户通过搜索引擎访问跳转:
```
<script type="text/javascript">
var userAgent = navigator.userAgent.toLowerCase();
var mobileKeywords = ['iphone', 'android', 'windows phone', 'blackberry'];
var isMobile = false;
for (var i = 0; i < mobileKeywords.length; i++) {
if (userAgent.indexOf(mobileKeywords[i]) !== -1) {
isMobile = true;
break;
}
}
if (isMobile) {
window.location.href = 'http://m.example.com'; //跳转到移动端页面
} else {
window.location.href = 'http://www.example.com'; //跳转到PC端页面
}
</script>
```
这段代码会检测用户所使用的设备类型,如果是移动设备则跳转到移动端页面,否则跳转到PC端页面。其中,mobileKeywords数组存储了移动设备的关键字,通过遍历这个数组判断用户所使用的设备类型。如果包含移动设备关键字,则设置isMobile为true,执行相应的跳转操作。
阅读全文