How do I make this popup box disappear when I click outside?(当我在外面点击时,如何让这个弹出框消失?)
问题描述
http://jsfiddle.net/mnbayazit/by3zy/2/
当我单击背景上的某个位置时,我希望弹出窗口消失.问题是,当我单击 [X] 或弹出窗口本身时,它会消失.
I want the popup to disappear when I click somewhere on the background. Problem is, it disappears when I click an [X] or the popup itself.
如果这让我的意图更清楚,想象一下它是一个日历选择器.
Imagine it being a calendar-picker if that makes my intentions more clear.
我怎样才能让它做到这一点?
How can I get it to do that?
推荐答案
为主体设置一个
click
处理程序以删除您的弹出窗口.
Set a
click
handler for the body to remove your popup.
为弹出窗口本身设置一个 click
处理程序,该处理程序在事件上调用 stopPropagation()
,以防止它冒泡到正文.
Set a click
handler for the popup itself that calls stopPropagation()
on the event, to prevent it from bubbling up to the body.
大致:
function showMyPopup(){
...
$(myPopupDiv).click(function(e){
e.stopPropagation();
});
}
function closeMyPopup(){
...
}
$(document.body).click(closeMyPopup);
这篇关于当我在外面点击时,如何让这个弹出框消失?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当我在外面点击时,如何让这个弹出框消失?
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01