JavaScriptには新しいので、私の質問がばかげている場合は私を許してください。 は、私はこれらのアイコンのいずれかをクリックするとポップアップウィンドウが開きますJavaScript関数を呼び出すようにしたい、今すぐ同じHTMLページの異なるボタンに同じonClick機能を呼び出す
<img src="/images/info_icon.gif" id="tooltip_icon" alt="hee haa">
<img src="/images/info_icon.gif" id="tooltip_icon" alt="hee haa">
<img src="/images/info_icon.gif" id="tooltip_icon" alt="hee haa">
で表さ私のページ上のさまざまなアイコンを(同じアイコンが再び繰り返さと)持っている -
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("tooltip_icon");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
IDで要素を取得しようとしているため、アイコンの1つのみがクリックされたときにモーダルになり、ほかの要素をクリックすると関数が呼び出されません(明らかに)。
いずれかのアイコンをクリックすると、同じ関数を呼び出す必要があります。
どうすればよいですか?ここに私のコードを見つけてください - https://jsfiddle.net/up5bd22s/1/
ありがとうございます!