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

Posted misterhe

tags:

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

 

1原生方法

// html

<div id="box" style="width:110px;height:110px;background-color:red"></div>

//js------js的contains方法用来查看dom元素的包含关系,

document.addEventListener(‘click‘,(e)=>{
  alert(‘zhixing‘)
  var box = document.getElementById(‘box‘);
  if(box.contains(e.target)){
    alert(‘在内‘);
  }else{
    alert(‘在外‘);
  }
})

 

2、 vue 写法

//html

<div id="box" ref="box" style="width:110px;height:110px;background-color:red"></div>

//js  ----ref是vue获取DOM元素的方法,在标签上绑定ref属性,js在组件内部用this.$refs.ref的值,调用。


created(){
  document.addEventListener(‘click‘,(e)=>{
    console.log(this.$refs.box.contains(e.target));
    if(!this.$refs.box.contains(e.target)){
      this.isShowDialog = false;
    }
  })
}

原文:https://blog.csdn.net/cxz792116/article/details/79415544

 

3vue

  给最外层的div加个点击事件 @click="userClick=false"

  给点击的元素上面加上:@click.stop="userClick=!userClick" //vue click.stop阻止点击事件继续传播

或者给子元素js事件里

click(e)=>{

  e.stopPropagation();//阻止事件冒泡

  this.userClick = !this.userClick;

}



















以上是关于实现点击页面其他地方,隐藏div(原生和VUE)的主要内容,如果未能解决你的问题,请参考以下文章

vue点击其他地方隐藏div

vue点击其它地方隐藏组件

vue实现图片隐藏判断支付成功后怎么显示图片

vue动画如何实现只经历运动而不隐藏

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

一个弹出div,当点击页面上除了这个div这外的地方,隐藏这个div,jquery怎么写??