通过作用域决定 this 与哪个对象匹配
它的使用方式:
- 通过参数传递的方式, 如 <input ... οnclick="dowhat(this)">, 指向 input 本身
- 通过对象赋值的方式, 如 element.οnclick=dowhat, 指向 element
- 通过函数调用的方式, 如 dowhat(), 指向 window
本文共 240 字,大约阅读时间需要 1 分钟。
通过作用域决定 this 与哪个对象匹配
它的使用方式:
- 通过参数传递的方式, 如 <input ... οnclick="dowhat(this)">, 指向 input 本身
- 通过对象赋值的方式, 如 element.οnclick=dowhat, 指向 element
- 通过函数调用的方式, 如 dowhat(), 指向 window
转载于:https://www.cnblogs.com/yipeng-yu/archive/2011/12/08/2280484.html