JS to determine browser type (mobile phone and computer terminal)

Source: Internet
Author: User

Work often use JS to judge the function of the browser! Today, we use JS to determine whether the browser is from a mobile device or a PC device!

The code is as follows:

varBrowser={versions:function(){    varU = window.navigator.userAgent; return{trident:u.indexof (' Trident ') >-1,//IE kernelPresto:u.indexof (' presto ') >-1,//Opera KernelWebkit:u.indexof (' AppleWebKit ') >-1,//Apple, Google kernelGecko:u.indexof (' Gecko ') >-1 && u.indexof (' khtml ') = =-1,//Firefox kernelMobile:!! U.match (/applewebkit.*mobile.*/) | |!! U.match (/applewebkit/),//whether it is a mobile terminalIos:!! U.match (/\ (i[^;] +;( U;)? Cpu.+mac OS x/),//iOS terminalAndroid:u.indexof (' Android ') >-1 | | U.indexof (' Linux ') >-1,//Android Terminal or UC browserIphone:u.indexof (' IPhone ') >-1 | | U.indexof (' Mac ') >-1,//whether it is an iphone or an Android QQ browserIpad:u.indexof (' IPad ') >-1,//whether it is an ipadWebapp:u.indexof (' Safari ') = =-1,//is the Web application, with no header and bottom
Weixin:u.indexof (' micromessenger ') = =-1// Whether it is a browser }; } ()}document.writeln ("Whether it is a mobile terminal:" +browser.versions.mobile);d Ocument.writeln ("iOS Terminal:" +Browser.versions.ios);d Ocument.writeln ("Android Terminal:" +browser.versions.android);d Ocument.writeln ("Is the iphone:" +browser.versions.iPhone);d Ocument.writeln ("Whether ipad:" +browser.versions.iPad);d Ocument.writeln (navigator.useragent);

The above code will be judged by returning a Boolean value! You can extend the methods and functions you want through this!

JS to determine browser type (mobile phone and computer terminal)

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.