2. 使用事件对象的stopPropagation方法:在事件处理函数中,可以通过事件对象的`stopPropagation(`方法来阻止事件的冒泡。 ```vue <template> </template> export default methods: handleDivClic // 点击div的处理函数 }, handleButtonClick(event) event.stopPropagation(; // 点击button的处理函数 } } ``` 在...
vue中阻⽌click事件冒泡,防⽌触发另⼀个事件的⽅法使⽤vue阻⽌⼦级元素的click事件冒泡,很简单,⽤stop 按钮1 按钮2 这样点击div⾥⾯的按钮1,就不会触发div绑定时间test1()⽅法。以上这篇vue中阻⽌click事件冒泡,防⽌触发另⼀个事件的⽅法就是⼩编分享给⼤家的全部内容了,希...