Мне бы хотелось, чтобы две кнопки открыли модальное, и еще две, чтобы открыть другую, но я не могу заставить его работать.
var modal = document.getElementById('modal');
var btns = document.querySelectorAll('.pack.detail');
var span = document.getElementsByClassName("close")[0];
[].forEach.call(btns, function(el) {
el.onclick = function() {
var id = el.id;
alert(id);
modal.style.display = "block";
}
})
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
var modal = document.getElementById('modal2');
var btns = document.querySelectorAll('.pack.detail');
var span = document.getElementsByClassName("close")[0];
[].forEach.call(btns, function(el) {
el.onclick = function() {
var id = el.id;
alert(id);
modal.style.display = "block";
}
})
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
/* Modal */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
-webkit-animation-name: fadeIn; /* Fade in the background */
-webkit-animation-duration: 0.4s;
animation-name: fadeIn;
animation-duration: 0.4s
}
/* Content */
.modal-content {
position: fixed;
bottom: 0;
background-color: #fefefe;
width: 100%;
-webkit-animation-name: slideIn;
-webkit-animation-duration: 0.4s;
animation-name: slideIn;
animation-duration: 0.4s
}
/* Close Button */
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
.modal-body {
padding: 2px 16px;
}
.modal-footer {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
<button class="pack detail" id="1">Open modal 1</button>
<button class="pack detail" id="2">Open modal 2</button>
<!-- Modal 1 -->
<div id="modal" class="modal">
<div class="modal-content">
<!-- Header -->
<div class="modal-header">
<span class="close">×</span>
<h2>Modal Header</h2>
</div>
<!-- Body -->
<div class="modal-body">
<p>Some text in the Modal Body</p>
<p>Some other text...</p>
</div>
<!-- Footer -->
<div class="modal-footer">
<h3>Modal Footer</h3>
</div>
</div>
</div>
<!-- Modal 2 -->
<div id="modal2" class="modal">
<div class="modal-content">
<!-- Header -->
<div class="modal-header">
<span class="close">×</span>
<h2>Modal Header2</h2>
</div>
<!-- Body -->
<div class="modal-body">
<p>Some text in the Modal Body2</p>
<p>Some other text...</p>
</div>
<!-- Footer -->
<div class="modal-footer">
<h3>Modal Footer2</h3>
</div>
</div>
</div>
Я не понимаю, почему второй модал все равно открывается. Мне нужно, чтобы открыть разные модальные для каждой кнопки с идентификатором, сгенерированным базой данных mysql. Я уже видел много других сообщений, но я не могу адаптировать их к своим потребностям. Пожалуйста, без Bootstrap.