Sjoerd Visscher 發(fā)現(xiàn)了一個(gè)簡(jiǎn)潔的 方法 讓樣式在 IE 中作用到未知的元素上——僅需 JS 創(chuàng)建此未知元素即可:
document.createElement(elementName)
同理(對(duì)于 IE 來(lái)說(shuō) HTML5 元素即是未知元素),該方法也可順延到 HTML5 的元素上(詳細(xì)見(jiàn):John Resig 寫的 《HTML5 Shiv》 一文):
<html> <head> <style>section { color: red; }</style> <script>document.createElement("section")</script> </head> <body> <section>Hello World!</section> </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]); } })();
詳細(xì)具體應(yīng)用的案例如下:
Popularity: 5% [?]
原文:http://www.planabc.net/2009/06/13/how_to_use_html5_elements_in_ie/
本文鏈接:http://www.95time.cn/tech/web/2009/6802.asp
出處:藍(lán)色理想
責(zé)任編輯:bluehearts
◎進(jìn)入論壇網(wǎng)頁(yè)制作、WEB標(biāo)準(zhǔn)化版塊參加討論,我還想發(fā)表評(píng)論。
|