網頁開發中IE6瞬間崩潰的5種情況
關鍵程式碼:
<style type="text/css"> function crashIE() { |
2.document.write
<script>for (x in document.write) { document.write(x);}</script> |
在FF和Chrome中,都會打印出“prototype”字元,在IE6中立即崩潰。
3.在CSS中使用萬用字元*,在HTML的table標籤中直接放置內容(而不是<tr>標籤之類)
<style>*{position:relative}</style><table>aaabbbccc</table> |
4.CSS中出現@+任意字元+/* 立即崩潰
<style>@;/*</style> |
5.onload="window()"