zoukankan      html  css  js  c++  java
  • 如何让旧版IE浏览器认识HTML5元素

    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
     < ![endif]-->

    解读:

    <!--[if lt IE 9]>

       <script type="text/javascript">

    var e=("abbr,article,aside,audio,canvas,datalist,details,"+ "figure,footer,header,hgroup,mark,menu,meter,nav,output,"+ "progress,section,time,video").split(',');

    for(var i=0;i<e .length;i++){

    document.createElement(e[i]); }

    </script>

     < ![endif]-->

    请看如下的例子:

    <!DOCTYPE HTML>

    <html lang="en">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>unknown elements</title><style> article{display:block;border:1px solid red}</style></meta></head><body><article> <h1>welcome to feimos's blog</h1> <p>This is your <span>first time to visit this webSite.</span></p></article>

    </body>

    </html>

  • 相关阅读:
    js获取数组最大值或最小值
    echarts 在 vue-awesome-swiper中无法点击
    vue 父子父组件通过props传父页面请求后的数据
    vue 路由对象
    popupwindow
    数据库
    冒泡排序
    xtuils
    版本更新
    清除缓存
  • 原文地址:https://www.cnblogs.com/hushufang/p/3532080.html
Copyright © 2011-2022 走看看