e.target 与 e.srcElement

  • e.target 为当前事件作用的对象
  • ie下不支持以上属性,需要用e.srcElement代替

example

...
if(e.target) {
  console.log(e.target)
} else {
  console.log(e.srcElement)
}
...

你可能感兴趣的:(e.target 与 e.srcElement)