Based on JS, when a mobile client accesses a PC page, it jumps to the corresponding mobile webpage.

Source: Internet
Author: User

Based on JS, when a mobile client accesses a PC page, it jumps to the corresponding mobile webpage.

If you do not want to use CSS to display different styles on the PC and mobile terminals, you can only jump to the corresponding mobile webpage when accessing the PC webpage on the mobile terminal. How can you jump to the webpage, there are also a lot of articles on the Internet, the following implementation ideas have been tested in small series, feel free to use.

1.

PC Access display:

Mobile Access display:

2. Implementation:

If you do not consider optimization of the mobile search engine, you only need to use JS to determine whether the Mobile End is redirected to the specified page. The main JS is as follows:

// Determine whether the client is moved. If so, the client jumps to the specified URL address function browserRedirect (url) {// read-only string, declares the value var sUserAgent = navigator of the user proxy header used by the browser for HTTP requests. userAgent. toLowerCase (); var bIsIphoneOs = sUserAgent. match (/iphone OS/I) = "iphone OS"; var bIsMidp = sUserAgent. match (/midp/I) = "midp"; var bIsUc7 = sUserAgent. match (/rv: 1.2.3.4/I) = "rv: 1.2.3.4"; var bIsUc = sUserAgent. match (/ucweb/I) = "ucweb"; var bIsAndroid = sUserAgent. match (/android/I) = "android"; var bIsCE = sUserAgent. match (/windows ce/I) = "windows ce"; var bIsWM = sUserAgent. match (/windows mobile/I) = "windows mobile"; if (bIsIphoneOs | bIsMidp | bIsUc7 | bIsUc | bIsAndroid | bIsCE | bIsWM) {window. location. replace (url );}}

Then reference JS on the page and call the method:

<script src="../js/wap.js"></script><script type="text/javascript">browserRedirect("http://ycdoit.com/test/testmobile.html");</script> 

Friendly reminder: You can use the PC and mobile terminal to access the test page to demonstrate the effect!

This article introduces how to jump to the corresponding mobile webpage when using JS to access PC pages on mobile terminals. I hope it will be helpful to you!

Articles you may be interested in:
  • Javascript allows video carousel on pc and mobile
  • How does js determine whether users access data on PC or mobile?
  • How to enable mobile browsers not to display pc-side advertisements
  • JQuery implements waterfall stream layout (PC and mobile end)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.