欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

点击遮罩层的背景关闭遮罩层,

程序员文章站 2022-07-13 22:07:36
...
<div class="active-rule">
 <div class="active-rule-container"></div>
</div>
 $(".active-rule").click(function() {
  $(".active-rule").hide()
 })
 $(".active-rule-container").click(function(event){
  event.stopPropagation();
 })

 

相关标签: js 前端