繁体   English   中英

onclick事件在WEB页面上不起作用

[英]onclick event don't work on WEB page

我想创建一个模式框。 当用户单击按钮时,它应该出现;当用户单击模式框中的关闭按钮时,它应该关闭。 我做了两个功能:

  • check():更改CSS。 在点击后,出现模式框
  • close():此函数应关闭模式框,但不是。 它仅应设置先前的CSS设置。 单击关闭按钮(span元素)时,此功能根本无法执行。

为什么关闭功能不起作用,我应该现代化什么才能得到结果?

提前致谢)

 function check() { var modal = document.getElementById("myModal"); modal.style.display = "block"; } //this function dont't work function close(){ var modal = document.getElementById("myModal"); modal.style.display = "none"; } 
 .modal { display: none; position: fixed; z-index: 1; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); } .modal-content { background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid #888; width: 80%; } 
 <html> <body> <button id="button" type="submit" onclick="check()">Login</button> <div id="myModal" class="modal"> <div class="modal-content" > <span class="close" onclick="close()">&times;</span> <p >Some text in the Modal..</p> </div> </div> </body> </html> 

close已经是本机浏览器函数window.close() 重命名您的函数,它可以正常工作:

 function check() { var modal = document.getElementById("myModal"); modal.style.display = "block"; } function closeModal(){ var modal = document.getElementById("myModal"); modal.style.display = "none"; } 
 .modal { display: none; position: fixed; z-index: 1; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); } .modal-content { background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid #888; width: 80%; } 
 <html> <body> <button id="button" type="submit" onclick="check()">Login</button> <div id="myModal" class="modal"> <div class="modal-content" > <span class="close" onclick="closeModal()">&times;</span> <p >Some text in the Modal..</p> </div> </div> </body> </html> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM