zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    手把手教你进行R语言的安装及安装过程中相关问题解决方案
    一篇文章助你理解Python3中字符串编码问题
    一篇文章助你理解Python2中字符串编码问题
    浅谈unicode编码和utf-8编码的关系
    网络爬虫过程中5种网页去重方法简要介绍
    手把手教你如何安装水晶易表——靠谱的安装教程
    在Windows上如何安装和彻底卸载Adobe Flash Player教程
    java 类的执行顺序
    bean的二次加工-Spring5.X后置处理器BeanPostProcessor
    Spring里面bean的生命周期里面的init和destroy方法
  • 原文地址:https://www.cnblogs.com/Man-Dream-Necessary/p/5501714.html
Copyright © 2011-2022 走看看