我使用以下代码进行了设备检测:
<script>
if( /Android|webOS|iPhone|iPod|BlackBerry|IEMobile/i.test(navigator.userAgent) ) {
if(window.location.hash == "#desktop"){
// Stay on desktop website
} else {
window.location = "<?php bloginfo('url'); ?>/m";
}
}
</script>
这样做的目的是让用户回到网站的桌面版本,但是,当用户点击桌面网站上的链接然后被重定向到移动网站时,就会出现我的问题。
#desktop
如果单击查看桌面链接,如何始终将 附加到所有链接?这可能吗?