jQuery中文版,v1.9.1注释全翻译

 1 /*!
 2  * jQuery JavaScript Library v1.9.1
 3  * http://jquery.com/
 4  *
 5  * Includes Sizzle.js
 6  * http://sizzlejs.com/
 7  *
 8  * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors
 9  * Released under the MIT license
10  * http://jquery.org/license
11  *
12  * 日期: 2013年2月4日
13  * 翻译:刘建(毕业院校:家里蹲大学低能班)
14  * 联系邮箱:243376129@qq.com
15  * 翻译上的不足之处,希望大家能告诉我,我会尽量修改,本人才疏学浅,文化程度不高,希望大家多多包涵,我会努力改正。
16  */
17 (function( window, undefined ) {
18 //不要做这个因为各自的应用程序包括ASP.NET查找
19 // the stack via arguments.caller.callee and Firefox dies if
20 //你尝试查找通过“精确使用”呼叫链接(#13335)
21 //支持:火狐浏览器 18+
22 //“精确使用”;
23 var
24     // The deferred used on DOM ready
25     //
26     readyList,
27 
28     // A central reference to the root jQuery(document)
29     rootjQuery,
30 
31     //支持:IE9之前的版本
32     // For `typeof node.method` instead of `node.method !== undefined`
33     core_strundefined = typeof undefined,

正在编辑,敬请期待。