The shortest JS to determine whether it is IE6 (IE writing method)

The shortest JS to determine whether it is IE6 (IE writing method)

Commonly used JavaScript code to detect which version of IE the browser is, including whether it is the most extremely hated IE6 identification and detection.


Copy code
The code is as follows:

var isIE=!!window.ActiveXObject;
var isIE6=isIE&&!window.XMLHttpRequest;
var isIE8=isIE&&!!document.documentMode;
var isIE7=isIE&&!isIE6&&!isIE8;
if (isIE){
if (isIE6){
alert("ie6");
}else if (isIE8){
alert("ie8");
}else if (isIE7){
alert("ie7");
}
}

Then there is a slightly shorter js method to determine whether it is IE:
This seems to use the conditional compilation (or conditional comment) unique to JScript in IE to distinguish IE from non-IE (the IE/non-IE here refers to the kernel, and browsers with IE as the kernel will be regarded as IE)


Copy code
The code is as follows:

var ie = 0/*@cc_on+1@*/;

The shortest js code to judge IE or non-IE is only 7 bytes:


Copy code
The code is as follows:

var ie = !+'\v1';

In January 2010, a Russian took advantage of the difference between IE and standard browsers in processing array toString methods and perfectly completed the IE browser detection with only 6 bytes:


Copy code
The code is as follows:

var ie = !-[1,];

Using these findings, we can write code that is shorter. Now, the detection of whether it is IE6 can actually be written as:


Copy code
The code is as follows:

var ie6=!-[1,]&&!window.XMLHttpRequest;

The previous long and cumbersome analysis of navigator and the regular comparison method, the following JS method is more efficient!

<<:  Detailed explanation of triangle drawing and clever application examples in CSS

>>:  An article to help you understand Js inheritance and prototype chain

Recommend

Detailed explanation of how to mount remote file systems via SSH on Linux

Features of SSHFS: Based on FUSE (the best usersp...

MySQL database optimization: index implementation principle and usage analysis

This article uses examples to illustrate the prin...

JavaScript Advanced Custom Exception

Table of contents 1. Concept 1.1 What are errors ...

27 Linux document editing commands worth collecting

Linux col command The Linux col command is used t...

Nginx server adds Systemd custom service process analysis

1. Take nginx as an example Nginx installed using...

Web design experience: Make the navigation system thin

<br />When discussing with my friends, I men...

VMware WorkStation 14 pro installation Ubuntu 17.04 tutorial

This article records the specific method of insta...

Zen coding resource update function enhancement

Official website: http://code.google.com/p/zen-cod...

AsyncHooks asynchronous life cycle in Node8

Async Hooks is a new feature of Node8. It provide...

Solution to MySQL IFNULL judgment problem

Problem: The null type data returned by mybatis d...

Solution to the problem of adaptive height and width of css display table

Definition and Usage The display property specifi...

win10 mysql 5.6.35 winx64 free installation version configuration tutorial

mysql 5.6.35 winx64 free installation version con...

Vue implements QR code scanning function (with style)

need: Use vue to realize QR code scanning; Plugin...

Example of using Nginx reverse proxy to go-fastdfs

background go-fastdfs is a distributed file syste...

How to generate Hive table creation statement comment script in MySQL metadata

Preface This article mainly introduces the releva...