Learning Blog

預定調和

Old IE Support Html5 Tag

| Comments

舊版本IE支援 html5的方法html5shiv

<!--[if lt IE 9]>
    <script src="bower_components/html5shiv/html5shiv.js"></script>
<![endif]-->

jQuery 有 jQuery.support.html5Clone 會檢查閱覽器是否支援html5的tag,在 jQuery 1.9以前的版本有jQuery.clean 會負責處理舊版IE在插入新的tag會遇到的issue。

另外還有display:inline的問題,在閱覽器在解釋不支援的tag時樣式會預設為display:inline 所以要Reset CSS。

Comments