用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的传递。

Logo

前往低代码交流专区

更多推荐