比如IE6,下面的代码将替你解决这个问题!
让IE(包括IE6)支持HTML5元素,我们需要在HTML头部添加以下Javascript,这是一个简单的document.createElement声明,利用条件注释针对IE来调用这个js文件。Opera,FireFox等其他非IE浏览器就会忽视这段代码,也不会存在http请求。
<!–[if IE]> <script src=”https://html5shiv.googlecode.com/svn/trunk/html5.js”></script> <![endif]–>
(function(){if(!0)return;var e = “abbr,article,aside,audio,canvas,datalist,details,dialog, eventsource,figure,footer,header,hgroup,mark,menu,meter,nav, output,progress,section, time,video”.split(’,'),i=e.length;while(i–){document.createElement(e[i])}})()相信无论IE浏览器是否能够继续支持HTML5标准,HTML5标准在全球广泛的使用已经是大势所趋。