search
HomeWeb Front-endJS Tutorialjs uses the event to prevent bubbling to hide the click blank modal box_javascript skills

Many times, when we are working on the front end, we will have such a small function. Click to pop up a certain box. However, sometimes we don’t want to operate, so we want to click on a blank space to hide the box. Assume the following scenario, a small button can pop up a modal box when clicked.

It’s that simple, but we want to hide the modal box when clicking on the blank part, add button id: btn, modal box id: model

Perhaps our simplest idea is to directly Listen for an event on the document. The pseudo code is as follows:

Button click pop-up event monitoring:

Copy code Code As follows:

$("#btn").bind("click",function(e){
if(e.stopPropagation){//Need to prevent bubbling
e .stopPropagation();
}else{
e.cancelBubble = true;
}
})

Copy the code The code is as follows:

$(document).bind("click",function(e){
if (the click event is not on the model) {
Hide modal box;
}
})

At first glance, this is no problem, but in fact, there are many problems. First, we have to pay attention to blocking Bubble, otherwise, clicking the button actually triggers the above two events. The modal cannot pop up. In fact, it pops up and is hidden immediately. Moreover, when we have many small controls on the modal box, Sometimes, it is difficult for us to judge the click in the modal box.

Here, I think there is one of the most classic methods, which is very simple but very clever.

First, listen for an event for the modal box as follows:
Copy code The code is as follows:

$("#modal").bind("click", function(event) {
if (event && event.stopPropagation) {
event.stopPropagation();
} else {
event.cancelBubble = true;
}

});

Simply prevent click events from bubbling up in the modal,

Then:
Copy code The code is as follows:

$(document).one("click", function(e){
var $target = $(e.currentTarget);
if ( $target.attr("id") != "modal") {
$("#modal").css("display", "none");
}
});

Done, so easy
Statement
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
有效阻止事件冒泡的方法有效阻止事件冒泡的方法Feb 19, 2024 pm 08:25 PM

如何有效地阻止事件冒泡,需要具体代码示例事件冒泡是指当一个元素上的事件触发时,父级元素也会收到相同的事件触发,这种事件传递机制有时会给网页开发带来麻烦,因此我们需要学习如何有效地阻止事件冒泡。在JavaScript中,我们可以通过使用事件对象的stopPropagation()方法来阻止事件冒泡。该方法可以在事件处理函数中调用,以停止事件继续传播到父级元素。

HTML、CSS和jQuery:构建一个漂亮的模态框HTML、CSS和jQuery:构建一个漂亮的模态框Oct 25, 2023 pm 12:03 PM

HTML、CSS和jQuery:构建一个漂亮的模态框引言:网页中经常会使用弹出窗口或模态框来显示信息,实现交互效果。本文将介绍如何使用HTML、CSS和jQuery来构建一个漂亮的模态框,并附上具体的代码示例。一、HTML结构:首先,我们需要创建一个HTML结构来容纳模态框。代码如下所示:<!DOCTYPEhtml><html>

如何使用Vue实现模态框特效如何使用Vue实现模态框特效Sep 22, 2023 am 10:36 AM

如何使用Vue实现模态框特效随着互联网技术的发展,模态框(Modal)作为一种常见的交互方式被广泛应用于网页设计中。模态框可以用于展示弹窗、警告、确认等信息,给用户更好的交互体验。本文将介绍如何使用Vue框架实现一个简单的模态框特效,并提供具体的代码示例。以下为实现模态框特效的步骤:创建Vue实例首先,我们需要在HTML文件中引入Vue的CDN链接,并在Ja

Vue 中如何实现对话框及模态框?Vue 中如何实现对话框及模态框?Jun 25, 2023 am 09:26 AM

Vue中如何实现对话框及模态框?随着前端技术的不断发展和更新,前端页面的开发变得越来越复杂和多样化。对话框和模态框是前端页面中经常出现的元素,能够帮助我们实现更加灵活多样的交互效果。在Vue中,实现对话框和模态框的方式有很多种,本文就为大家介绍几种常见的实现方式。1.使用Vue自带的组件Vue.js提供了一些内置组件,比如transition和tra

哪些JS事件不会向上传播?哪些JS事件不会向上传播?Feb 19, 2024 am 08:17 AM

JS事件中哪些不会冒泡?在JavaScript中,事件冒泡是指当一个元素触发了某个事件时,该事件会逐级向上冒泡到更高层的元素,直到冒泡到文档根节点。然后,事件处理程序会按照冒泡的顺序依次执行。然而,并不是所有的事件都会冒泡。有些事件在触发后只会执行目标元素上的事件处理程序,而不会冒泡到更高层的元素上。下面是一些常见的不会冒泡的事件:focus和blur事件:

精通阻止事件冒泡的命令技巧!精通阻止事件冒泡的命令技巧!Feb 18, 2024 pm 10:31 PM

掌握阻止冒泡事件的指令技巧!当我们使用电子设备时,经常会遇到各种事件的触发。有些事件就像泡泡一样,从一个地方冒出来,然后蔓延到其他地方,影响我们的正常操作。为了避免冒泡事件的蔓延,我们需要掌握一些指令技巧。本文将介绍一些常见的阻止冒泡事件的指令技巧,帮助读者更好地处理这类问题。首先,让我们了解什么是冒泡事件。在计算机编程中,冒泡事件是指当一个元素触发了某个事

如何使用 JavaScript 实现模态框功能?如何使用 JavaScript 实现模态框功能?Oct 20, 2023 pm 04:46 PM

如何使用JavaScript实现模态框功能?在网页开发中,模态框是一种常见的交互式组件,可用于弹出提示、确认框或者展示详细内容等功能。本文将介绍如何使用JavaScript来实现一个简单的模态框,并给出具体的代码示例。一、HTML结构首先,我们需要在HTML中添加模态框的结构。可以使用一个div元素作为模态框的容器,并在该div中添加标

Vue组件开发:模态框组件实现方法Vue组件开发:模态框组件实现方法Nov 24, 2023 am 08:26 AM

Vue组件开发:模态框组件实现方法在Web应用程序中,模态框是一种常见的UI控件,可以用于展示一些重要的内容,如提示信息、警告信息、提示用户进行某些操作等。本文将介绍如何使用Vue框架来开发一个简单的模态框组件,并提供代码示例以供参考。组件结构首先我们需要定义一个模态框组件,包括HTML结构、样式和逻辑功能。组件通常由一个父组件像子组件传递属性,子组件根据属

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.