为了能到远方,脚下的每一步都不能少.|

李云蹊

园龄:2年11个月粉丝:33关注:5

vue中点击其他任意位置关闭弹框


    mounted() {
        //点击任意位置关闭区域弹窗
        document.addEventListener('click', (e) => {

            //获取弹窗对象
            const userCon = document.getElementsByClassName('tanKuang')[0];
            const userCon1 = document.getElementsByClassName('tanKuang')[1];

            //判断弹窗对象中是否包含点击对象
            if (userCon && !userCon.contains(e.target)&& !userCon1.contains(e.target)) {
                //如果包含则跳转回之前的页面
                this.isShowModal = false;
            }

        })

    },

 

本文作者:李云蹊

本文链接:https://www.cnblogs.com/liyunxi/p/16424539.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   李云蹊  阅读(920)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起