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: