您是否知道在不添加任何HTML 元素的情况下将此 HTML 代码优化为 IE6 或 7(或 8)的任何方法,或者 IE 跳过了所有 HTML5 元素?
如果我只想用 CSS 格式化元素,我不想使用其他功能,那么 document.createElement("nav") DOM 元素是否足以欺骗 IE 并制作纯 HTML 文档?
<!DOCTYPE HTML>
<head>
<meta charset="UTF-8">
<title>title</title>
<link type="text/css" rel="stylesheet" href="reset.css">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<header>code of header</header>
<nav>
code of nav
</nav>
<section>
code of gallery
</section>
<article>
code of article
</article>
<footer>code of footer</footer>
</body>
</html>
谢谢你。
有关 DOM 在 IE6、IE7 和 IE8 中使用 html5 启用脚本创建元素的更多信息 »此处