在 IE 中使用 HTML5 元素
生活随笔
收集整理的這篇文章主要介紹了
在 IE 中使用 HTML5 元素
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
一個HTML5范本
<html><head>
<style>blah?{?color:?red;?}</style>
</head>
<body>
<blah>Hello!</blah>
</body>
</html>
?
一個簡潔的?方法?讓樣式在 IE 中作用到未知的元素上——僅需 JS 創(chuàng)建此未知元素即可:
<html><head>
<style>blah?{?color:?red;?}</style>
<script>document.createElement("blah")</script>
</head>
<body>
<blah>Hello!</blah>
</body>
</html>
?
在 IE 中,為了更方便使用?HTML5?元素,我們可以引入這樣的腳本:
(function(){????//?from:?http://dean.edwards.name/weblog/2007/03/sniff/
????if(!/*@cc_on!@*/0)?return;?
????var?html5?=?"abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog,
eventsource,figure,footer,hgroup,header,mark,menu,meter,nav,output,
progress,section,time,video".split(',');
????for(var?i?=?0,?len?=?html5.length;?i?<?len;?i++?)
????????document.createElement(html5[i]);
????}
})();
?
JS下載
http://remysharp.com/downloads/html5.js
JS應(yīng)用
<!--[if IE]>
<script src="html5.js" type="text/javascript"></script>
<![endif]-->
?
轉(zhuǎn)載于:https://www.cnblogs.com/fdszlzl/archive/2009/06/19/1506973.html
總結(jié)
以上是生活随笔為你收集整理的在 IE 中使用 HTML5 元素的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [导入]韩语基本会话
- 下一篇: Mono 2.0