gpt4 book ai didi

javascript - HTML - 在其外部单击时边栏不关闭

转载 作者:行者123 更新时间:2023-11-30 14:31:02 25 4
gpt4 key购买 nike

我有一个侧边栏,可以在按下图像时显示。但是,当我在侧边栏外单击时,任何不是侧边栏的区域都不会关闭。我尝试查找它,但没有找到解决方案。

我不太熟悉 html,所以这可能只是一个简单的修复。

var side = document.getElementById('mySidenav');
sideBarOpen = false;

function openNav() {
document.getElementById("mySidenav").style.width = "300px";
document.getElementById("arrow").style.transform = "rotate(90deg)";
document.body.style.backgroundColor = "rgba(0,0,0,0.4)";

sideBarOpen = true;
}

function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("arrow").style.transform = "rotate(0deg)";
document.body.style.backgroundColor = "white";
sideBarOpen = false;
}

window.onclick = function(event) {
if (sideBarOpen) {
if (!event.target == side) {
closeNav();
}
}
}
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
<a href="#"><img src="clubsIcon.svg" style="width: 30px; height: 30px;" align="center"></a>
<a href="#"> &#8594; <img src="srIcon.svg" style="width: 30px; height: 30px;" align="center"></a>
<a href="#"><img src="cricketIcon.svg" style="width: 30px; height: 30px;" align="center"></a>
<a href="#"><img src="fblaIcon.svg" style="width: 30px; height: 30px;" align="center"></a>
<a href="#"><img src="roboticsIcon.svg" style="width: 30px; height: 30px;" align="center"></a>
</div>

<div style="font-size:30px;cursor:pointer;" onclick="openNav()">
<img src="arrow.png" style="width: 20px; height: 20px;" id="arrow" class="arrowclass">
</div>

最佳答案

您的代码中错误的行是这样的:

if (!event.target == side) {

as !event.target 将返回一个 bool 值,然后您可以将其与元素进行比较。所以你总是会从这种比较中得到否定的回应。

应该是:

if (event.target !== side) {

一旦解决了这个问题,您还会遇到逻辑问题,因为开启按钮位于侧边栏之外。除了您现有的检查它不是来自侧边栏之外,您还需要添加检查窗口点击事件不是来自开启按钮。请参阅下面的代码更改:

<div  id="openIcon" style="font-size:30px;cursor:pointer;" onclick="openNav()">
<img src="arrow.png" style="width: 20px; height: 20px;" id="arrow" class="arrowclass">
</div>

脚本:

window.onclick = function(event) {
if (sideBarOpen) {
if (event.target !== side && event.target !== document.getElementById('openIcon')) {
closeNav();
}
}
}

关于javascript - HTML - 在其外部单击时边栏不关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51162152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com