Javascript-based mobile terminal jump to the corresponding mobile webpage _ javascript skills when accessing PC-side pages

Source: Internet
Author: User
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 by a small series, you can refer to the need for friends do not want to use CSS adaptive display of different styles on the PC and mobile terminals, respectively, so you can only jump to the corresponding mobile Web page when you access the PC web page on the Mobile End. How can you jump to the page? There are also many articles on the Internet. The following implementation ideas have been tested in a small series, safe 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:

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.