我有以下代码来处理页面上的模式打开和关闭。我希望能够在同一页面上加载第二个模式。它将具有相同的“ .custom-modal”类,但具有不同的ID。
使用我当前的代码,两个模式都打开,但是只有第一个模式可以关闭。
var modal;
// Get the button that opens the modal
var btns = document.querySelectorAll(".customModalTrigger");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("custom-close")[0];
var body = document.body;
// When the user clicks the button, open the modal
[].forEach.call(btns, function(el) {
el.onclick = function() {
// Get the modal
modal = document.querySelector('#' + el.id + '.custom-modal');
modal.classList.add('-show');
body.classList.add('noscroll');
}
})
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.classList.remove('-show');
body.classList.remove('noscroll');
}
答案 0 :(得分:1)
您的问题是这个
var span = document.getElementsByClassName("custom-close")[0];
具体地说,是[0]
。您仅将事件侦听器应用于第一个匹配元素,而没有其他任何元素。相反,请尝试:
var span = document.getElementsByClassName("custom-close");
for (var i = 0; i < span.length; i++){
span[i].onclick = = function() {
modal.classList.remove('-show');
body.classList.remove('noscroll');
}
}
答案 1 :(得分:0)
document.getElementsByClassName("custom-close")[0]
只是一个x按钮。您应该向所有这些事件添加onclick事件处理程序
类似这样的东西:
var spans = document.getElementsByClassName("custom-close");
[].forEach.call(spans, function(el) {
el.onclick = function() {
modal.classList.remove('-show');
body.classList.remove('noscroll');
}
})