码迷,mamicode.com
首页 > Web开发 > 详细

HTML5标签 兼容低版本IE浏览器

时间:2020-06-14 16:43:33      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:ogre   css   兼容   style   签名   detail   res   list   tail   

利用document.createElement创建当前浏览器(IE6-8)不支持的标签名

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            article {
                color: #008FD8;
                font-size: 36px;
            }
        </style>
        <script type="text/javascript">
            (function() {
                if (!
                /*@cc_on!@*/
                0) return;
                var e = "abbr, article, aside, audio, canvas, datalist, details, dialog, eventsource, figure, footer, header, hgroup, mark, meter, nav, output, progress, section, time, video".split(", ");
                var i = e.length;
                while (i--) {
                    document.createElement(e[i]);
                }
            })();
        </script>
    </head>
    <body>
        <article>Harold</article>
    </body>
</html>

 

HTML5标签 兼容低版本IE浏览器

标签:ogre   css   兼容   style   签名   detail   res   list   tail   

原文地址:https://www.cnblogs.com/Harold-Hua/p/13125112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!