请在 Chrome 浏览器中检查我的代码,如果您点击刷新,系统会提示您提供 2 个选项。
- 离开此页面并
- 保持此页上
当我点击2. Stay on this page按钮时,它必须激活我的自定义函数displayMsg()
任何人都可以为我提供解决方案吗?
<script type="text/javascript">
function displayMsg() {
alert('my text..');
}
</script>
<script type="text/javascript">
window.onbeforeunload = function(evt) {
var message = 'Please Stay on this page and we will show you a secret text.';
if (typeof evt == 'undefined') {
evt = window.event;
}
if (evt) {
evt.returnValue = message;
return message;
}
trace(evt);
}
</script>