Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
287 views
in Technique[技术] by (71.8m points)

javascript - Auto Mobile Site Redirect

I just made my first jQuery mobile site.

I want to have people that view my "Full Site" with a mobile phone automatically get transferred to the "MOBILE SITE". But also have the ability to click a link to view the Full site if they want.

I have no idea where to start. Is there some JavaScript I could use or something?

If you want to see what the sites look like, here is the Full Site: http://www.solera-restaurant.com and the mobile site is still on my testing server: http://graves-incorporated.com/test_sites/solera_mobile/

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
<script type="text/javascript">
        if (screen.width <= 720) {
        window.location = "mobile/index.php";
    }
</script>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...