如何在卸载之前重写该对话框并将其替换为我自己的对话框?
window.onbeforeunload=handler
<script type="text/javascript"> window.onbeforeunload=closeIt;</script>
function closeIt(){ if (changes == "true" || files == "true") { return "Here you can append a custom message to the default dialog."; }}
$(window).beforeunload(function() { confirm('new message: ' + this.href + ' !', this.href); return false; });
慕少森
幕布斯6054654
守着星空守着你
相关分类