会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
樱风凛
博客园
首页
新随笔
联系
订阅
管理
2019年9月3日
编写一个自定义事件类,包含on/off/emit/once方法
摘要: ``` function Event() { this._events = {}; } Event.prototype.on = function(type, fn) { if (!this._events[type]) { this._events[type] = [] } this._events[type].push(fn); } Event.prototype.off = function
阅读全文
posted @ 2019-09-03 00:58 樱风凛
阅读(753)
评论(0)
推荐(0)
编辑
公告