<!DOCTYPE html>
<html>
<head>
<style>
/* The Modal (background) */
.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 */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
</style>
</head>
<body>
<h2>Modal Example</h2>
<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// 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";
}
}
</script>
</body>
</html>
我尝试将外部文件中的所有css和js值分开并将其调用为html,但它说
model.js:15未捕获的ReferenceError:未定义模态 在HTMLButtonElement.document.getElementById.onclick(model.js:15)
我该如何解决呢?
答案 0 :(得分:1)
这很可能是因为您在头部添加了外部JS文件。这将在DOM准备加载之前触发JS。所以没有模式可供选择,因为它尚未被浏览器渲染。
以下是三种可能的解决方案。
<强> 1。重新定位外部脚本
一个简单的解决方案是在关闭body标签之前重新定位脚本标记,该标记加载外部资源。
// Your HTML markup
<script src="yourfile.js" type="text/javascript"></script>
</body>
</html>
<强> 2。在window.onload 强>
将代码包装到函数中并使用window.onload
激活它
window.onload
等待从样式表到图像的所有内容,以及加载。因此,当图片之类的东西仍在加载时,模态不会触发,而大部分页面看起来都很好。
https://jsfiddle.net/PaulvdDool/e6zqp0p0/
第3。 jQuery解决方案
添加jquery并将您的代码包装在文档就绪函数之间。
$(document).ready(function() {
// Your code here
});