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.
我正在创建一个可打印的 HTML 测验和测试工具,我想确认“您确定要关闭此窗口吗?” 当用户试图关闭窗口时。如果他们点击确定它会关闭,但如果他们点击取消它不会。
我需要这个在 IE 和 Chrome 中工作。
window.onbeforeunload = function(e) { return 'some prompt text'; };
工作示例