js method to determine browser type_javascript skills
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″);
}
}
The above is a commonly used JavaScript code to detect which version of IE the browser is.
In January this year, a Russian took advantage of the difference between IE and standard browsers in the toString method of processing arrays, and perfectly used 6bytes:!-[1,] to complete the detection of whether it is an IE browser. . The previous shortest code was: ! 7bytes of "v1". Using these findings we can also make our code shorter and more artistic. Nowadays, detecting whether it is IE6 can actually be written as
!-[1,]&&!window.XMLHttpRequest
This code is quite useful in actual use. Since it can be written shorter, why not do it. Compared with the previous cumbersome analysis of the navigator and then the regular comparison method, it is certainly more efficient, and the code is more concise. In the process of writing JavaScript, you should make more use of operators such as ||, &&, !, !!, not just in cases like if().

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Realize the gap effect of card coupon layout. When designing card coupon layout, you often encounter the need to add gaps on card coupons, especially when the background is gradient...

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

The reason and solution for coding exceptions when using the request library to obtain HTML text content in the Node.js environment. During the development process of using Node.js, it is often necessary to...

Implementing responsive layouts using CSS When we want to implement layout changes under different screen sizes in web design, CSS...

How to obtain dynamic data of 58.com work page while crawling? When crawling a work page of 58.com using crawler tools, you may encounter this...

The method of customizing resize symbols in CSS is unified with background colors. In daily development, we often encounter situations where we need to customize user interface details, such as adjusting...

iconfont...

The challenge of keeping the style of the page zoomed and the same after the page is zoomed in. Many developers will encounter a difficult problem when making PC pages: when the user zooms in or out of the browsing...
