Skip to content

Instantly share code, notes, and snippets.

View lihe6666's full-sized avatar
💭
I may be slow to respond.

lion lihe6666

💭
I may be slow to respond.
View GitHub Profile
@lihe6666
lihe6666 / checkIEVersion.js
Last active July 20, 2020 09:15
[checkIEVersion] Check is ie browser version. #check #javascript
(function() {
setTimeout(function() {
var div = document.createElement('div');
div.id = 'js_ie_notsupport';
div.innerHTML='<div class="ie-not-support">将浏览器更新为Firefox浏览器或Chrome浏览器,以获得更好的体验</div>'
if (window.attachEvent) {
window.attachEvent('onload', checkIEVersion);
} else if (window.addEventListener) {