点击页面其他地方隐藏弹窗

Posted 奕佚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击页面其他地方隐藏弹窗相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="js/jquery-2.1.3.min.js"></script>
        <style>
            .tip{
                margin:300px auto;
                width:200px;
                height:100px;
                text-align: center;
                background:green;
                color:#fff;
                display:none;
            }
        </style>
    </head>
    <body>
        <button>点我</button>
            <div class="tip">
                这里是提示信息!提示信息!提示信息!
            </div>
        <script>
            $(function(){
                $(button).click(function(e){
                    $(.tip).show();
                    
                    e.stopPropagation();
                    $(document).one(click,function(){
                        $(.tip).hide();
                    })
                })
                
                $(.tip).click(function(e){
                    e.stopPropagation();
                })
            })
        </script>
    </body>
</html>

 

one() 方法为被选元素附加一个或多个事件处理程序,并规定当事件发生时运行的函数。

当使用 one() 方法时,每个元素只能运行一次事件处理器函数。

以上是关于点击页面其他地方隐藏弹窗的主要内容,如果未能解决你的问题,请参考以下文章

jquery实现的点击页面其他地方隐藏显示的元素

JS如何实现点击页面其他地方隐藏菜单?

实现点击页面其他地方,隐藏div(vue)

实现点击页面其他地方,隐藏div(原生和VUE)

jq 点击按钮显示div,点击页面其他任何地方隐藏div

点击div外面隐藏弹窗