次のコードは動作しますが、最初の行についてのみ動作します。 3番目のボタンをクリックしても、トップボタンの情報と位置が参照されます。個々のユーザーに基づいてドロップダウンを行うべきことをJavascriptに伝えるにはどうすればよいですか? (この例ではそのIDによって識別される3人のユーザーがある:2160、3550、および5520)個々のユーザーのJavascriptドロップダウンを作成する
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #3e8e41;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
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: #f1f1f1
}
.show {
display:block;
}
<p>Click on the button to open the dropdown menu.</p>
<p>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="1-2160.html">1</a>
<a href="2-2160.html">2</a>
<a href="3-2160.html">3</a>
</div>
</div>
</p>
<p>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="1-3550.html">1</a>
<a href="2-3550.html">2</a>
<a href="3-3550.html">3</a>
</div>
</div>
</p>
<p>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="1-5520.html">1</a>
<a href="2-5520.html">2</a>
<a href="3-5520.html">3</a>
</div>
</div>
</p>
がうまくいけば、これは理にかなっています。
IDです。 – Teemu
私が直面しているのは、3つのdivすべてに対して 'id =" myDropdown "'があるということです。 div IDは一意である必要があります。 –