作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Javascript 学习 HTML 和 CSS。我目前正在尝试将 Javascript 代码与 html 文件分开,以实现模式弹出功能。我还没有学过 jquery,所以如果没有它就可以解决这个问题,将不胜感激。
完整的代码可以在这里找到:http://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_modal_img
HTML代码:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="modal.css">
<script type="text/javascript" src="modal.js" ></script>
</head>
<body>
<h2>Image Modal</h2>
<img id="myImg" src="img_fjords.jpg" alt="Trolltunga, Norway" width="300" height="200">
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
</body>
</html>
外部 Javascript 代码:
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
modalImg.alt = this.alt;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
上面的方法不行。当我点击图片时,没有模态弹出窗口。我猜简单地链接脚本是不够的,但我的语言不够流利,无法解决这个问题。
最佳答案
你可以把你的脚本标签放在正文中。就像这样。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="modal.css">
</head>
<body>
<h2>Image Modal</h2>
<img id="myImg" src="img_fjords.jpg" alt="Trolltunga, Norway" width="300" height="200">
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
<script src="your url"></script>
</body>
</html>
关于javascript - 您如何将模态的 Javascript 与 html 分开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38493573/
我是一名优秀的程序员,十分优秀!