程序员人生 网站导航

以毒攻毒:jQuery 代码让 IE6 崩溃

栏目:jquery时间:2014-05-26 01:51:59

上午,朋友从国外给发了一个链接,告诉我这事一个很有意思的插件(http://plugins.jquery.com/project/crash)--可以直接让IE6崩溃。对于前端开发者来说,对于IE6可能大伤脑筋。打开代码源文件,只见到以下代码:

/**
* jQuery Crash (http://mktgdept.com/jquery-crash)
* A jQuery plugin to crash IE6.
*
* v0.0.2 - 5 March 2010
*
* Copyright (c) 2009 Chad Smith (http://twitter.com/chadsmith)
* Dual licensed under the MIT and GPL licenses.
* http://www.opensource.org/licenses/mit-license.php
* http://www.opensource.org/licenses/gpl-license.php
*
* Use $.crash();
*
**/
;jQuery.crash=function(x){for(x in document.open);};

 

看到代码,我百思不得其解。它如何工作?通过搜索,在《jQuery one-line plugin to crash IE6》找到了一点答案--通过一段恶意的代码使浏览器崩溃。但他如何工作,我还是一头雾水。该文章有很多相关的评论,说法不一。
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐