这个插件如何设计为崩溃IE6,崩溃IE6?

时间:2010-03-31 16:26:19

标签: jquery browser jquery-plugins internet-explorer-6 crash

Chad Smith推出jQuery plugin designed to crash the IE6 browser

;jQuery.crash=function(x){for(x in document.open);};

这样做究竟是为了解决这个问题?

2 个答案:

答案 0 :(得分:4)

它没有打开窗口,它试图迭代document.open对象。其中的一些本机代码属性会导致IE6崩溃。

这是一个例子,如果有效的话会在那里(试试任何非IE6浏览器):

http://jsfiddle.net/XB8j8/

答案 1 :(得分:-1)

从我看到的内容中,它与JQuery没有任何关系。

<body onload='for(x in document.open);'>

它会打开无限数量的窗口,因此会让你失去内存,导致IE崩溃。