JavaScript identifies various browser _javascript techniques through navigator.useragent

Source: Internet
Author: User
Principle: Recognition based on navigator.useragent return value

Realize:
Copy Code code as follows:

function Validbrowser () {
var u_agent = navigator.useragent;
var browser_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> ');
}

3, with several browsing user_agent ... Like 360 compatibility mode with IE, speed mode with the chrom of the kernel

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.