JavaScript identifies various browsers through Navigator.useragent

Source: Internet
Author: User

The implementation principle of identifying various browsers is based on the Navigator.useragent return value identification:

Realize:

unction Validbrowser () {varU_agent =navigator.useragent;varBrowser_name= ' Failed to identify the browser '; if(U_agent.indexof (' Firefox ') >-1) {Browser_name= ' Firefox '; }Else if(U_agent.indexof (' Chrome ') >-1) {Browser_name= ' Chrome '; }Else if(U_agent.indexof (' Trident ') >-1&&u_agent.indexof (' rv:11 ') >-1) {Browser_name= ' IE11 '; }Else if(U_agent.indexof (' MSIE ') >-1&&u_agent.indexof (' Trident ') >-1) {Browser_name= ' IE (8-10) '; }Else if(U_agent.indexof (' MSIE ') >-1) {Browser_name= ' IE (6-7) '; }Else if(U_agent.indexof (' Opera ') >-1) {Browser_name= ' Opera '; }Else{browser_name+ = ', info: ' +u_agent;} document.write (' Browser_name: ' +browser_name+ ' <br> '); document.write (' U_agent: ' +u_agent+ ' <br> '); } 

There are several browsing user_agent. Like 360 compatibility mode with IE, speed mode with the Chrom kernel

For example, determine 3,602 modes with the following code:

if (Window.navigator.userAgent.indexOf (' compatible ')! =-1) {alert (' 360 compatibility mode ');} if (Window.navigator.userAgent.indexOf (' AppleWebKit ')! =-1) {alert (' 360 speed mode ');}

JavaScript identifies various browsers through Navigator.useragent

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.