[Vue warn]: Error in v-on handler: “TypeError: Cannot read properties of undefined (reading ‘target‘
用vue绑定事件时,不小心在事件getR后加了个()<button @click.once="getR()" >领取</button>然后在getR中用event:getR(e){const nowBgColor2=e.target.style.backgroundColore.target.style.backgroundColor= "red"console.log("
·
用vue绑定事件时,不小心在事件getR后加了个()
<button @click.once="getR()" >领取</button>
然后在getR中用event:
getR(e){
const nowBgColor2=e.target.style.backgroundColor
e.target.style.backgroundColor= "red"
console.log("成功领取奖励!")
}
结果报错如下:
[Vue warn]: Error in v-on handler: "TypeError: Cannot read properties of undefined (reading 'target')"
把()去掉后就好了。
这说明在vue绑定事件中,()影响事件对象event的传递。
更多推荐
已为社区贡献1条内容
所有评论(0)