2.1事件系统 中removeEventListener 用法有误
lixuguang1988 opened this issue · 1 comments
lixuguang1988 commented
- 51页52页53页多处
target.removeEventListener('click')
来移除上面注册的click方法。
removeEventListener(type, listener, [options|useCapture])
中前两个参数是必选项。
mdn removeEventListener - 48页
而 HTML事件则需要使用全部小写的属性名(比如onclick)
HTML并不区分大小 onclick 和onCLICK 是一样的效果
arcthur commented
感谢,已勘误