Javascript code used to determine the mobile browser instance

Source: Internet
Author: User

To determine whether a user is a mobile browser is actually very simple. We only need to obtain the userAgent information of the browser, and then we can determine and match the userAgent to determine whether the user is a mobile browser.


Recently, I am preparing to build a mobile website. So I found a few js scripts on the Internet to determine whether it is a mobile browser, and pasted them to share them:


1. How to determine whether a mobile terminal uses regular match,

Match navigator. userAgent with the string AppleWebKit ***** Mobile

Android qq browser HD only supports AppleWebKit

2 mobile phone language version judgment

You can use navigator. browserLanguage to obtain the windows phone language version,
Of course, there are also compatibility differences between the hateful little mobile phone language versions, compatible with Mozilla, and AppleWebKit kernel browsers to access their language versions, it will list navigator. language

First, direct JS script:

The Code is as follows: Copy code

Try {
Var urlhash = window. location. hash;
If (! Urlhash. match ("fromapp ")){
If (navigator. userAgent. match (/(iPhone | iPod | Android | ios | iPad)/I ))){
Window. location = "http://www.bKjia. c0m (change to your own WAP website )";
}
}
} Catch (err ){}

Second, reference (slightly longer ):

The Code is as follows: Copy code

Function uaredirect (murl ){
Try {
If (document. getElementById ("bdmark ")! = Null ){
Return;
}
Var urlhash = window. location. hash;
If (! Urlhash. match ("fromapp ")){
If (navigator. userAgent. match (/(iPhone | iPod | Android | ios | iPad)/I ))){
Location. replace (murl );
}
}
} Catch (err ){}
}

The second method is page call:


The above scripts are kept in the wap. js file, and then reference the following two JS call files on the page to be called.

The Code is as follows: Copy code

<Script src = "wap. js" type = "text/javascript"> </script>
<Script type = "text/javascript"> uaredirect ("http://www.bKjia. c0m (change to your own WAP website)"); </script>


Refer to the php code modified on thinkphp Official Website:

The Code is as follows: Copy code

<Script type = "text/javascript">
Var ua = navigator. userAgent,
MobileAgents = ["240x320", "acer", "ACO", "acs-", "abacho", "ahong", "airness", "alcatel ", "amoi", "android", "anywhereyougo.com", "applewebkit/525 ",

"Applewebkit/532", "asus", "audio", "au-mic", "avantogo", "becker", "benq", "bilbo", "bird ", "blackberry", "blazer", "bleu", "cdm-", "compal", "coolpad", "danger", "dbtel", "dopod ", "Elasticity", "eric", "etouch", "fly", "fly _", "fly-", "go. web "," goodaccess "," gradiente "," grundig "," haier "," hedy "," hitachi "," htc "," huawei "," huchison ",

"Inno", "ipad", "ipaq", "ipod", "jbrowser", "kddi", "kgt", "kwc", "lenovo", "lg ", "lg2", "lg3", "lg4", "lg5", "lg7", "lg8", "lg9", "lg-", "lge -", "lge9", "longcos", "maemo", "mercator", "meridian", "micromax", "midp", "mini", "mitsu", "mmm ", "mmp", "mobi", "mot-", "moto", "nec-", "netfront", "newgen", "nexian", "nf-browser ", "nintendo", "nitro", "nokia", "nook", "novarra", "obigo", "palm", "panasonic", "pantech", "philips ", "phone", "pg-", "playstation", "pocket", "pt-", "qc-", "qtek", "rover", "sagem ", "sama", "samu", "sanyo", "samsung", "sch-", "scooter", "sec-", "sendo", "sgh -", "sharp", "siemens", "sie-", "softbank", "sony", "spice", "sprint", "spv", "symbian ", "tablet", "talkabout", "tcl-", "teleca", "telit", "tianyu", "tim-", "toshba", "tsm ", "up. browser "," utec "," utstar "," verykool "," virgin "," vk-"," voda "," voxtel "," vx "," wap ", "wellco", "wig browser", "wii", "windows ce", "wireless", "xda", "xde", "zte"];
For (var I = 0; I <mobileAgents. length; I ++ ){
If (ua. toLowerCase (). indexOf (mobileAgents [I])>-1 ){
Window. location. href = 'HTTP: // www.hzhuti.com ';
Break;
}
}
</Script>

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.