Chad Smith推出jQuery plugin designed to crash the IE6 browser。
;jQuery.crash=function(x){for(x in document.open);};
这样做究竟是为了解决这个问题?
答案 0 :(得分:4)
它没有打开窗口,它试图迭代document.open
对象。其中的一些本机代码属性会导致IE6崩溃。
这是一个例子,如果有效的话会在那里(试试任何非IE6浏览器):
答案 1 :(得分:-1)
从我看到的内容中,它与JQuery没有任何关系。
<body onload='for(x in document.open);'>
它会打开无限数量的窗口,因此会让你失去内存,导致IE崩溃。