javascript — Модальное окно в приложении Angular / PHP на одной странице не работает

Я пытаюсь реализовать модальное окно, которое находится внутри страницы PHP на веб-сайте одностраничного приложения, и мне не удалось заставить модальное окно работать.

Несмотря на то, что у меня есть файл .js, в котором я храню свои функции, у меня есть JavaScript на странице PHP, где я пытаюсь заставить модальное окно работать. Я бы предпочел, чтобы все функции были в файле .js, но я не мог заставить это работать в любом случае.

Страница PHP

Это не index.php, но вызывается после начальной загрузки страницы

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="myModal" class="modal">

<!-- Modal content -->
<div class="modal-content">
<span class="close">&times;</span>
<img id="popup_img" src="#">
</div>

</div>
<div id="screenings">
<?php
$db = mysqli_connect("localhost", "root", "", "data");
$sql = "SELECT * FROM screenings";
$result = mysqli_query($db, $sql);
while ($row = mysqli_fetch_array($result)){
echo "<div id='img_div'>";
echo "<img id='img_screenings' class='modal_img' src='images/".$row['image']."' >";
//echo "<p>" .$row['text']."</p>";
echo "</div>";
}
?>
</div>
<script>
// Get the modal
var modal = document.getElementById('myModal');

// Get the button that opens the modal
//var btn = document.getElementsByClassName("modal_img");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

$("img").on("click", function() {
var source = ( $(this).attr("src") );
//alert(source);
//$('#modal_popup').text(source);
$('#popup_img').prop('src', this.src);
});

// When the user clicks the button, open the modal
document.getElementById("img_screenings").onclick = function(){
modal.style.display = "block";
alert("hello");
}

// 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";
}
}
</script>
</body>

CSS для модального окна

Я не думаю, что что-то не так с этой частью

.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
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 */
text-align: center;
}

/* Modal Content */
.modal-content {
background-color: black;
position: relative;
margin: auto;
padding: 50px 40px 50px 50px;
display: inline-block;
}

/* The Close Button */
.close {
color: #aaaaaa;
float: right;
position: relative;
left: 20px;
bottom: 35px;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
}
.modal_img{
cursor: pointer;
}

В настоящее время я не получаю никаких ошибок в консоли браузера, но модальное окно не появляется.

0

Решение

Обернуть ваш код JavaScript с $document.ready(function(){...}) должен решить проблему.

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]