JS判断IE版本并在页面显示内容

<script type="text/javascript">

var isIE = function (ver) {

var b = document.createElement('b')

b.innerHTML = '<!--[if IE ' + ver + ']><i></i><![endif]-->'

return b.getElementsByTagName('i').length === 1

}

if (isIE(5)) {

document.write('&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;放手吧哥们!<br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Hi Guy Let It Go! <br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;손을 놓다 시다 지게!<br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Пусти же чувак!<br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Lâcher prise GeMen!<br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Déjame UN!<br>&#73;&#69;&#53;&#63;&nbsp;&#58;&#45;&#41;&nbsp;うたび手放し!')

}

if (isIE(6)) {

document.write('&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;放手吧哥们!<br>&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Hi Guy Let It Go! <br>&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;손을 놓다 시다 지게!<br>&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Пусти же чувак!<br>&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Lâcher prise GeMen!<br>&#73;&#69;&#54;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Déjame UN!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;うたび手放し!')

}

if (isIE(7)) {

document.write('&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;放手吧哥们!<br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Hi Guy Let It Go! <br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;손을 놓다 시다 지게!<br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Пусти же чувак!<br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Lâcher prise GeMen!<br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Déjame UN!<br>&#73;&#69;&#55;&#63;&nbsp;&#58;&#45;&#41;&nbsp;うたび手放し!')

}

if (isIE(8)) {

document.write('&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;放手吧哥们!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Hi Guy Let It Go! <br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;손을 놓다 시다 지게!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Пусти же чувак!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Lâcher prise GeMen!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;Déjame UN!<br>&#73;&#69;&#56;&#63;&nbsp;&#58;&#45;&#41;&nbsp;うたび手放し!')

}

</script>

原文地址:https://www.cnblogs.com/Man-Dream-Necessary/p/5501714.html