{"id":13720407,"url":"https://github.com/ziyi2/jquery","last_synced_at":"2025-07-04T17:08:08.334Z","repository":{"id":98890271,"uuid":"70589996","full_name":"ziyi2/jQuery","owner":"ziyi2","description":"jQuery2.0.3源码分析笔记","archived":false,"fork":false,"pushed_at":"2019-05-04T06:28:15.000Z","size":6365,"stargazers_count":40,"open_issues_count":0,"forks_count":14,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T05:25:25.490Z","etag":null,"topics":["jquery","source","source-code","source-code-analysis"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ziyi2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-10-11T12:15:58.000Z","updated_at":"2023-09-03T01:08:12.000Z","dependencies_parsed_at":"2023-03-07T19:45:14.517Z","dependency_job_id":null,"html_url":"https://github.com/ziyi2/jQuery","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ziyi2/jQuery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziyi2%2FjQuery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziyi2%2FjQuery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziyi2%2FjQuery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziyi2%2FjQuery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ziyi2","download_url":"https://codeload.github.com/ziyi2/jQuery/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziyi2%2FjQuery/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263585722,"owners_count":23484484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jquery","source","source-code","source-code-analysis"],"created_at":"2024-08-03T01:01:03.433Z","updated_at":"2025-07-04T17:08:08.287Z","avatar_url":"https://github.com/ziyi2.png","language":"JavaScript","funding_links":[],"categories":["笔记"],"sub_categories":["JavaScript"],"readme":"## 前言\n\n这里加入了很多对于原生`JavaScript`的理解,忽略了`Sizzle`选择器(它可以单独抽离出来使用`Sizzle.js`框架)的源码分析,同时由于`13.事件操作`源码相对比较复杂,只是粗略的进行了源码的调试和说明,对于`Jquery`如何监听事件以及取消监听的原理,代码执行顺序和兼容性问题处理有了粗略理解,后续有空会继续深入分析源码的实现原理.\n\n## 完整版\n\n- [jQuery 2.0.3源码分析](https://github.com/ziyi2/jQuery/blob/master/jQuery.md)\n\n## 1. 总体架构\n\n- [自执行匿名函数](https://github.com/ziyi2/jQuery/blob/master/%E6%80%BB%E4%BD%93%E6%9E%B6%E6%9E%84.md#1-1-%E8%87%AA%E6%89%A7%E8%A1%8C%E5%8C%BF%E5%90%8D%E5%87%BD%E6%95%B0)\n\n## 2.私有属性\n\n- [`rootjQuery`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#21-rootjquery)\n- [`readyList`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#22-readylist)\n- [`core_strundefined`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#23-core_strundefined)\n- [`window`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#24-window%E5%B1%9E%E6%80%A7)\n- [`_`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#25-_%E5%8F%98%E9%87%8F)\n- [`class2type`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#26-class2type)\n- [`core_deletedIds`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#27-core_deletedids)\n- [`core_version`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#28-core_version)\n- [数组、对象、字符串方法](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#29-%E6%95%B0%E7%BB%84%E5%AF%B9%E8%B1%A1%E5%AD%97%E7%AC%A6%E4%B8%B2%E6%96%B9%E6%B3%95)\n- [`jQuery`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#210-jquery%E9%87%8D%E7%82%B9)\n- [正则变量](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#211-%E6%AD%A3%E5%88%99%E5%8F%98%E9%87%8F)\n- [`fcamelCase`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#212--fcamelcase)\n- [`completed`](https://github.com/ziyi2/jQuery/blob/master/%E7%A7%81%E6%9C%89%E5%B1%9E%E6%80%A7.md#213--completed)\n\n\n## 3. jQuery对象的属性和方法\n\n- [`$().jquery`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#31-jquery)\n- [`$().constructor`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#32-constructor)\n- [`$().init()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#33-init-jquery%E6%9E%84%E9%80%A0%E5%87%BD%E6%95%B0%E6%96%B9%E6%B3%95) - jQuery构造函数方法\n- [`$().selector`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#34-selector)\n- [`$().length`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#35-length)\n- [`$().toArray()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#36-toarray)\n- [`$().get()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#37-get)\n- [`$().pushStack()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#38-pushstack)\n- [`$().end()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#39-end)\n- [`$().slice()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#310-slice)\n- [`$().each()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#311-each)\n- [`$().ready()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#312-ready)\n- [`$().first()/last()/eq()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#313-firstlast-eq)\n- [`$().map()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#314-map)\n- [`$().push()/sort()/slice()`](https://github.com/ziyi2/jQuery/blob/master/jQuery%E5%AF%B9%E8%B1%A1%E7%9A%84%E5%B1%9E%E6%80%A7%E5%92%8C%E6%96%B9%E6%B3%95.md#315-pushsortslice)\n\n\n## 4. 拷贝继承\n\n- [拷贝继承](https://github.com/ziyi2/jQuery/blob/master/%E6%8B%B7%E8%B4%9D%E7%BB%A7%E6%89%BF.md#4-%E6%8B%B7%E8%B4%9D%E7%BB%A7%E6%89%BF)\n\n## 5. 工具方法\n\n- [`$.expando`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#51-expando)\n- [`$.noConflict`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#52-noconflict)\n- [`$.ready()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#53-ready)\n- [`$.holdReady()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#54-holdready)\n- [`$.isFunction()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#55-isfunction)\n- [`$.isArray()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#56-isarray)\n- [`$.isWindow()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#57-iswindow)\n- [`$.isNumeric()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#58-isnumeric)\n- [`$.type()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#59-type)\n- [`$.isPlantObject()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#510-isplantobject)\n- [`$.isEmptyObject()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#511-isemptyobject)\n- [`$.error()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#512-error)\n- [`$.parseHTML()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#513-parsehtml)\n- [`$.parseJSON()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#514-parsejson)\n- [`$.parseXML()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#515-parsexml)\n- [`$.noop()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#516-noop)\n- [`$.globalEval()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#517-globaleval)\n- [`$.camelCase()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#518-camelcase)\n- [`$.nodeName()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#519-nodename)\n- [`$.each()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#520-each)\n- [`$.trim()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#521-trim)\n- [`$.makeArray()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#522-makearray)\n- [`$.inArray()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#523-inarray)\n- [`$.merge()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#524-merge)\n- [`$.grep()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#525-grep)\n- [`$.map()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#526-map)\n- [`$.guid`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#527-guid)\n- [`$.proxy()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#528-proxy)\n- [`$.access()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#529-access)\n- [`$.now()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#530-now)\n- [`$.swap()`](https://github.com/ziyi2/jQuery/blob/master/%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95.md#531-swap)\n\n## 6. 选择器Sizzle\n\n忽略了Sizzle选择器(它可以单独抽离出来使用Sizzle.js框架)的源码分析。\n\n\n## 7. 回调对象\n\n- [`options`](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#7-1-options)\n- [`$.Callback().add()`](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#7-2-callbackadd)\n- [`$.Callback().remove()`](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#7-3-callbackremove)\n- [`$.Callback().has()`](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#7-4-callbackhas)\n- [`$.Callback().fire()/firewith()/fire()`](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#7-5-callbackfirefirewithfire)\n- [other API](https://github.com/ziyi2/jQuery/blob/master/%E5%9B%9E%E8%B0%83%E5%AF%B9%E8%B1%A1.md#76-other-api)\n\n\n## 8. 延迟对象\n\n- [`$.Deffered()`](https://github.com/ziyi2/jQuery/blob/master/%E5%BB%B6%E8%BF%9F%E5%AF%B9%E8%B1%A1.md#81-deffered)\n- [`$.when()`](https://github.com/ziyi2/jQuery/blob/master/%E5%BB%B6%E8%BF%9F%E5%AF%B9%E8%B1%A1.md#82-when)\n\n## 9. 功能检测\n\n- [功能检测](https://github.com/ziyi2/jQuery/blob/master/%E5%8A%9F%E8%83%BD%E6%A3%80%E6%B5%8B.md)\n\n## 10. 数据缓存\n\n- [`Date`构造函数](https://github.com/ziyi2/jQuery/blob/master/%E6%95%B0%E6%8D%AE%E7%BC%93%E5%AD%98.md#101-date%E6%9E%84%E9%80%A0%E5%87%BD%E6%95%B0)\n- [`data`工具方法](https://github.com/ziyi2/jQuery/blob/master/%E6%95%B0%E6%8D%AE%E7%BC%93%E5%AD%98.md#102-data%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95)\n- [`data`实例方法](https://github.com/ziyi2/jQuery/blob/master/%E6%95%B0%E6%8D%AE%E7%BC%93%E5%AD%98.md#103-data%E5%AE%9E%E4%BE%8B%E6%96%B9%E6%B3%95)\n\n## 11. 队列管理\n\n- [`queue`工具方法](https://github.com/ziyi2/jQuery/blob/master/%E9%98%9F%E5%88%97%E7%AE%A1%E7%90%86.md#111-queue%E5%B7%A5%E5%85%B7%E6%96%B9%E6%B3%95)\n- [`queue`实例方法](https://github.com/ziyi2/jQuery/blob/master/%E9%98%9F%E5%88%97%E7%AE%A1%E7%90%86.md#112-queue%E5%AE%9E%E4%BE%8B%E6%96%B9%E6%B3%95)\n\n## 12.元素属性\n\n- [`attr()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#121-attr)\n- [`removeAttr()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#122-removeattr)\n- [`prop()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#123-prop)\n- [`removeProp()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#124-removeprop)\n- [`addClass()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#125-addclass)\n- [`removeClass()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#126-removeclass)\n- [`hasClass()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#128-hasclass)\n- [`val()`](https://github.com/ziyi2/jQuery/blob/master/%E5%85%83%E7%B4%A0%E5%B1%9E%E6%80%A7.md#129-val)\n\n\n## 13. 事件操作\n\n- [JQuery实例对象扩展`jQuery.fn.extend`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#131-jquery%E5%AE%9E%E4%BE%8B%E5%AF%B9%E8%B1%A1%E6%89%A9%E5%B1%95jqueryfnextend)\n- [`$().on()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1311-on)\n- [`$().one()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1312-one)\n- [`$().off()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1313-off)\n- [`$().trigger()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1314-trigger)\n- [`$().triggerHandler()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1315-triggerhandler)\n- [事件工具对象`jQuery.Event`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#132-%E4%BA%8B%E4%BB%B6%E5%B7%A5%E5%85%B7%E5%AF%B9%E8%B1%A1jqueryevent)\n- [`$.event.add()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1321-eventadd)\n- [`$.event.dispatch()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1322-eventdispatch)\n- [`$.event.handlers()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1323-eventhandlers)\n- [`$.event.fix()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1324-eventfix)\n- [`$.event.special()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1325-eventspecial)\n- [`$.event.trigger()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1326-eventtrigger)\n- [`$.event.simulate()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1327-eventsimulate)\n- [`$.event.remove()`](https://github.com/ziyi2/jQuery/blob/master/%E4%BA%8B%E4%BB%B6%E6%93%8D%E4%BD%9C.md#1328-eventremove)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziyi2%2Fjquery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fziyi2%2Fjquery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziyi2%2Fjquery/lists"}