如何使用 JavaScript 在用户点击外部时隐藏一个 DIV?
要隐藏 div,当用户在它外部点击时,请尝试运行以下代码
示例
<!DOCTYPE html> <html> <body> <script> window.onload = function(){ var hideMe = document.getElementById('hideMe'); document.onclick = function(e){ if(e.target.id !== 'hideMe'){ hideMe.style.display = 'none'; } }; }; </script> <div id="hideMe">Click outside this div and hide it.</div> </body> </html>
广告