最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - View full website, not mobile version on iPhone - Stack Overflow

programmeradmin1浏览0评论

I have a script that detects whether you're an iPhone user or not and redirects to a more iPhone friendly page.

<script  type="text/javascript">
    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) 
    {
        location.replace("/");
    }
</script> 

This works great but has one problem. It is convention to offer the user the ability to view the full web page. However, if I link to the root, obviously the redirect is going to send them to the mobile version!

Any ideas on how to include if click on the link from /iphone/, they can go to / and stay there.

I have a script that detects whether you're an iPhone user or not and redirects to a more iPhone friendly page.

<script  type="text/javascript">
    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) 
    {
        location.replace("http://domain./iphone/");
    }
</script> 

This works great but has one problem. It is convention to offer the user the ability to view the full web page. However, if I link to the root, obviously the redirect is going to send them to the mobile version!

Any ideas on how to include if click on the link from /iphone/, they can go to / and stay there.

Share Improve this question edited Jan 16, 2012 at 1:38 ThinkingStiff 65.4k30 gold badges147 silver badges241 bronze badges asked Nov 15, 2010 at 4:43 RyaRya 3212 gold badges8 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

When the user arrives, determine their browser type - mobile or full - and set a cookie with this value. Use this cookie value to decide what version of the site to display. AS you mention, offer a link to the "full" site to the mobile users, but if they click it, run a quick script to update the cookie to the "full" value and then redirect them to the full site. Their cookie is now set for the full site, so they won't get bounced back to the mobile site.

Now, if cookie are a problem, you could use something like PHP to set a session values to maintain the full/mobile status of the session, but that's probably getting beyond the scope of the original question.

The Query String is the way to go ( as the others have said above). Looking at Facebook, if you click on the 'full site' link on the mobile site, it redirects to www.facebook./login.php?m2w - the m2w is probably MobileToWeb and this will prevent the site redirecting the user to the mobile site.

发布评论

评论列表(0)

  1. 暂无评论