Javascript事件绑定后的this

除了attachEvent中的this指向了全局对象,其他的事件绑定方式都是指向当前对象(currentTarget)

by calefy

HTML

<h1>Javascript事件绑定</h1>

<h2>绑定方式</h2>
- addEventListener<br/>
- attachEvent<br/>
- on+type<br/>

<h2>this指向</h2>
- attachEvent 指向 window<br/>
- 其他都是dom对象<br/>

<h2>on前缀属性</h2>
- setAttribute('ontype', 'code;') 类型是function