0

我使用以下代码进行了设备检测:

<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如果单击查看桌面链接,如何始终将 附加到所有链接?这可能吗?

4

1 回答 1

0

好吧,这只是一个想法,

  if(window.location.hash == "#desktop"){
    $(function(){
        $(document).find('a').click(function(e){
           e.preventDefault();
           window.location.replace($(this).attr("href")+"#desktop");
        });
    });
 }

或者

   if(window.location.hash == "#desktop"){
     $(function(){
       $(document).find('a').attr("href",$(this).attr()+"#desktop");
     });
   }

我认为最好的解决方案是在服务器端代码上使用 SESSION。

于 2013-03-27T08:41:56.237 回答