Home > Web Front-end > Vue.js > body text

How to cancel bubbling in vuejs

藏色散人
Release: 2023-01-13 00:45:33
Original
3415 people have browsed it

Vuejs method to cancel bubbling: 1. Open the corresponding vue file; 2. Pass "

...
" method to cancel event bubbling.

How to cancel bubbling in vuejs

The operating environment of this article: windows7 system, vue2.5.17 version, DELL G3 computer.

How to cancel bubbling in vuejs?

vue.js prevents event bubbling and default events

Native js cancels event bubbling

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


Native js blocks default events

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

vue.js cancels event bubbling

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

vue.js blocks default events

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

Recommended learning :《vue tutorial

The above is the detailed content of How to cancel bubbling in vuejs. 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