У меня есть несколько кнопок, где при нажатии на одну кнопку выпадает меню, а все остальные выпадающие меню будут закрыты. В настоящее время у меня есть 9 из них и соответствующие 9 функций для этой цели:
function myFunction5() {
document.getElementById("myDropdown1").classList.remove("show");
document.getElementById("myDropdown2").classList.remove("show");
document.getElementById("myDropdown3").classList.remove("show");
document.getElementById("myDropdown4").classList.remove("show");
document.getElementById("myDropdown5").classList.toggle("show");
document.getElementById("myDropdown6").classList.remove("show");
document.getElementById("myDropdown7").classList.remove("show");
document.getElementById("myDropdown9").classList.remove("show"); }
Это открывает выпадающее меню 5 и закрывает все остальные.
Я хотел бы иметь только одну функцию для этого вместо из 9. Как мне это сделать?
РЕДАКТИРОВАТЬ:
Полный пример кода:
<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #ddd;}
.show {display: block;}
</style>
</head>
<body>
<div class="dropdown">
<button onclick="myFunction1()" class="dropbtn">Dropdown</button>
<div id="myDropdown1" class="dropdown-content">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="dropdown">
<button onclick="myFunction2()" class="dropbtn">Dropdown</button>
<div id="myDropdown2" class="dropdown-content">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<script>
function myFunction1() {
document.getElementById("myDropdown1").classList.toggle("show");
document.getElementById("myDropdown2").classList.remove("show");
}
function myFunction2() {
document.getElementById("myDropdown1").classList.remove("show");
document.getElementById("myDropdown2").classList.toggle("show");
}
</script>
</body>
</html>
Представьте себе это 9 раз ...