为了账号安全,请及时绑定邮箱和手机立即绑定

我的绝对位置的div受到其父项的clic的影响

我的绝对位置的div受到其父项的clic的影响

临摹微笑 2021-04-12 12:15:34
我正在尝试在其容器父级中创建一个具有绝对位置的简单自定义下拉列表,单击父级时必须显示该下拉列表。问题是,当我单击子项时,它会调用其父项的click方法。单击绿色区域(父区域)。function clickHere() {  if (document.getElementById("drop").style.display == "block") {    document.getElementById("drop").style.display = "none";  } else {    document.getElementById("drop").style.display = "block";  }}<div style="background:red; height:500px;">  <div onclick="clickHere()" style="margin:auto;height: 40px; width:30%; background:green; position:relative;">    <div id="drop" style="display:none;width:100%; height:200px; background:blue; position:absolute; top: 100%; margin:0;">      <h3 style="text-align: center; color:white;">Hello</h3>      <h3 style="text-align: center; color:white;">Hello</h3>      <h3 style="text-align: center; color:white;">Hello</h3>      <h3 style="text-align: center; color:white;">Hello</h3>    </div>  </div></div>
查看完整描述

2 回答

?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

将对处理程序的调用更改为clickhere(event)

将clickhere函数更改为clickere(e),然后将对e.stopPropagation()的调用添加到该函数。

默认情况下,事件使层次结构冒泡。


查看完整回答
反对 回复 2021-04-29
  • 2 回答
  • 0 关注
  • 137 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信