Home > Web Front-end > Vue.js > How to prevent events from bubbling in vue.js

How to prevent events from bubbling in vue.js

coldplay.xixi
Release: 2020-11-10 13:45:31
Original
3049 people have browsed it

vue.js method to prevent event bubbling: 1. [vue.js] cancel event bubbling, the code is [

vue cancel Event bubbling
]; 2. [vue.js] prevents default events.

How to prevent events from bubbling in vue.js

[Related article recommendations: vue.js]

vue.js blocking events Bubbling method:

Native js cancels event bubbling

    try{
        e.stopPropagation();//非IE浏览器
    }
    catch(e){
        window.event.cancelBubble = true;//IE浏览器
    }
Copy after login

Native js blocks default event

if ( e && e.preventDefault ) {
            e.preventDefault()//非IE浏览器
} else { window.event.returnValue = false; } //IE浏览器
Copy after login

vue.js cancel event bubbling

<div @click.stop="doSomething($event)">vue取消事件冒泡</div>
Copy after login

vue.js prevent default event

<div @click.prevent="doSomething($event)">vue阻止默认事件</div>
Copy after login

Related free learning recommendations: JavaScript(Video)

The above is the detailed content of How to prevent events from bubbling in vue.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template