如何在 IE 中使用 HTML5 元素
让样式在 IE 中作用到未知的元素上——仅需 JS 创建此未知元素即可。
Hello World!
1
<html>
2
<head>
3
<style>
4
section { color: red; }</style>
5
<script>
6
document.createElement("section")</script>
7
</head>
8
<body>
9
<section>Hello World!</section>
10
</body>
11
</html>
<html>2
<head>3
<style>4
section { color: red; }</style>5
<script>6
document.createElement("section")</script>7
</head>8
<body>9
<section>Hello World!</section>10
</body>11
</html>方便地使用HTML5元素
Code 下载
参考资料


section
浙公网安备 33010602011771号