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.
window.onBeforeUnload = Nothing
上述 vbscript 语句的 JavaScript 等效项是什么?
window.onbeforeunload = null;
应该这样做。
不应该window.onBeforeUnload = function() {}做同样的事情吗?
window.onBeforeUnload = function() {}
如果我们将其设置为 null,则会导致 javascript 错误。