Tags
html
Created
Jan 14, 2017 10:48 AM
<a onclick="func(this)" >here</a>
this 指代 <a>, onclick 属性是在点击的时候以 js 执行字符串代码
<a href="javascript:func(this)">here</a>
this 指代 window 对象
<a onclick="func(this)" >here</a>
this 指代 <a>, onclick 属性是在点击的时候以 js 执行字符串代码
<a href="javascript:func(this)">here</a>
this 指代 window 对象