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)