当用户在其外部单击时关闭模式,为什么有==而不是!=?

时间:2019-04-11 16:46:10

标签: javascript

我从此处查看了一些代码:https://www.w3schools.com/howto/howto_css_modals.asp,但我想了解为什么在下面的代码中为什么==而不是!=:

// Get the modal
var modal = document.getElementById('yourModalId');

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

我们希望在单击模态外部时关闭窗口。为什么那里有一个等号?

2 个答案:

答案 0 :(得分:3)

看起来是因为modal是背景,而modal-content是您认为应该是模态的东西。

请参见工作示例here,并注意以下CSS块:

/* 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%;
}

答案 1 :(得分:0)

根据提供的链接,modal是模式的灯箱。 (透明背景)因此,当用户单击时,请关闭模式。