点击元素当前元素外的元素,隐藏当前元素

function(event){
let sp = document.getElementById('div')
  if(sp){
      if(!sp.contains(event.target) && event.target != div){
            //不是
       }else{
       }
  }
}

你可能感兴趣的:(点击元素当前元素外的元素,隐藏当前元素)