Chad Smith出來了jQuery plugin designed to crash the IE6 browser。這個插件如何設計使IE6崩潰,崩潰IE6?
;jQuery.crash=function(x){for(x in document.open);};
究竟是什麼導致了這個問題呢?
Chad Smith出來了jQuery plugin designed to crash the IE6 browser。這個插件如何設計使IE6崩潰,崩潰IE6?
;jQuery.crash=function(x){for(x in document.open);};
究竟是什麼導致了這個問題呢?
它不打開窗口,它試圖遍歷document.open
對象。那裏的一些本地代碼屬性會導致IE6崩潰。
下面是如果它的工作會是什麼在那裏一個例子(嘗試在任何非IE6瀏覽器):
從我所看到的方面來看,它跟JQuery沒有任何關係。
<body onload='for(x in document.open);'>
它看起來打開了無數的窗口,因此,運行你內存不足,導致IE崩潰。
這是真棒BTW。看起來很容易。 – jjclarkson 2010-03-31 16:27:36
呃。 'practicalApplication = fail;' – 2010-03-31 16:37:57
http://www.catswhocode.com/blog/6-html-and-javascript-codes-to-crash-ie6 – zombat 2010-03-31 16:41:20