0
안녕하세요 모두id 대신 클래스 이름을 클릭하여 모달 창을 열려고 시도했습니다.
나는 매우 간단한 것을 놓치고 있다고 생각하지만 찾을 수없는 것 같습니다. 사용자가 div를 클릭 할 때 모달 창을 열려고합니다. div에 "id"이 인 myBtn1이면 작동합니다. 그러나 div에 "클래스"이 인 myBtn1 인 경우 작동하지 않습니다.
도움을 주시면 대단히 감사하겠습니다.
이이 작동하지 않는
// Get the button that opens the modal
var btn = document.getElementById("myBtn1");
<a href="http://www.cnn.com/" target="_blank">
<div id="myBtn1">Open Cnn</div>
</a>
작동합니다.
// Get the button that opens the modal
var btn = document.getElementsByClassName("myBtn1");
<a href="http://www.cnn.com/" target="_blank">
<div class="myBtn1">Open Cnn</div>
</a>
에 얻을. @Suren Srapyan, 감사합니다! –