为什么只有一个 JavaScript 函数执行 onClick?

Why does only one JavaScript function execute onClick?

我是 JavaScript 的新手,据说我在我的代码中遇到了一个奇怪的错误。我的 HTML 中有三张图片,单击它们时应该会以模式打开。由于某种原因,模式将卡在最后一张新图像上。例如,如果我点击第一个,然后是第三个,然后是第二个,无论我点击第二个显示的是什么图像。我尝试通过将 H1 标签替换为图像名称来进行调试,这引发了另一条曲线,因为现在需要两次点击才能执行模态。我不确定我在做什么,我们将不胜感激。

JS-

<script>
function mode(param)
{

    smode = param;
    document.getElementById("h1thing").innerHTML = smode;
    document.getElementById("myImage").src = smode;
    run();

}
function run(){
// Get the modal
var modal = document.getElementById('myModal');


// Get the button that opens the modal
var btn = document.getElementById(smode);

// 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";
    smode = "";

}



// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
    if (event.target == modal) {
        modal.style.display = "none";
        smode = "";
    }
}
}
</script>

HTML-

<body>

<h2 id="h1thing">Modal Example</h2>


<!-- Trigger/Open The Modal -->
<center>
<div class="floated_img">
    <input id="ScreenShot.png" type="image" src="ScreenShot.png" width="400" height="300" alt="ScreenShot" onclick="myFunction();mode('ScreenShot.png');">
    </input>
</div>
<div class="floated_img">
    <input id="ScreenShot2.png" type="image" src="ScreenShot2.png" width="400" height="300" alt="ScreenShot2" onclick="myFunction();mode('ScreenShot2.png');">
    </input>
</div>
<div class="floated_img">
    <input id="kimlexi.jpg" type="image" src="kimlexi.jpg" width="400" height="300" alt="Kimlexi" onclick="myFunction();mode('kimlexi.jpg');">
    </input>
</div>
</center>
<!-- The Modal -->
<div id="myModal" class="modal">
  <!-- Modal content -->
  <div class="modal-content">
    <span class="close">

            <img src="x.png" width="40" height="40" alt="X">
    </span>
    <center>
        <img id="myImage" src="" width="600" height="500" alt="Kimlexi">
    </center>
  </div>

</div>
</body>

CSS-

<style>
button {
    background:transparent;
      border:none;
      outline:none;
      display:block;
      height:200px;
      width:200px;
      cursor:pointer;
}
/* 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;
}

.floated_img
{
    float: left;
}
</style>

问题

这里有两个问题。

  1. 第一次点击按钮不打开模式。第一次点击图片(以第一张图片为例),mode('ScreenShot.png')是执行,哪个
    1. 将 smode 设置为 'ScreenShot.png'
    2. <h1>
    3. 中显示 smode (='ScreenShot.png')
    4. 将 smode (='ScreenShot.png') 设置为 <img>src
    5. 调用 运行(),这会更改按钮的 onclick 处理程序,但从未真正打开模式!
  2. 第二次单击同一个按钮可能会显示错误的图像。发生这种情况是因为按钮的 onclick 处理程序在上面的步骤 1.4 中被覆盖(它被覆盖,未添加),新的事件处理程序 (btn.onclick = function() { modal.style.display = "block"; }) 仅使模式可见但不更改图像源。

建议的解决方案

如果只设置一次 onclick 处理程序会更容易。这是一种解决方案。

JS-

function openModal(imgSrc)
{
    document.getElementById("myImage").src = imgSrc;
    document.getElementById("myModal").style.display = "block";
}

function closeModal() {
    document.getElementById('myModal').style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
    if (event.target == document.getElementById('myModal')) {
        closeModal();
    }
}

HTML-

<input type="image" src="….png" width="400" height="300" 
        alt="ScreenShot" onclick="openModal('….png');">
…
<span class="close" onclick="closeModal()">