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


    <!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() 方法时,每个元素只能运行一次事件处理器函数。

  • 相关阅读:
    CF899A Splitting in Teams
    CF898A Rounding
    CF914A Perfect Squares
    CF864A Fair Game
    CF909A Generate Login
    关于C++的一些函数的使用方法
    又是一个二模02,不过day2
    2模02day1题解
    二模Day2题解
    KMP算法心得
  • 原文地址:https://www.cnblogs.com/wj19940520/p/6925208.html
Copyright © 2020-2023  润新知