Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想关闭您在屏幕上任意位置单击的菜单 https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_sidenav
向窗口添加一个单击事件侦听器并调用您的 closeNav 函数。
window.addEventListener('click', function(event) { if (event.target.tagName === 'HTML') { closeNav(); } });