如何使用javascript显示与SO类似的提醒类似的内容?
答案 0 :(得分:7)
您需要为 ajax polling 执行在撰写答案时出现的“加载新答案”提醒。
这是使用jQuery的nice tutorial for ASP.NET
对于当您开始键入答案/编辑帖子时尝试离开页面时的警报,请查看onunload
事件。使用confirm
对话框而不是alert
答案 1 :(得分:0)
当您尝试离开部分填写评论/答案的页面时,我们是否在谈论SO警告?在Javascript中查看onunload()
方法。有关示例,请参阅here。
答案 2 :(得分:0)
将此脚本添加到页面的头部:
<script language="javascript">
window.addEventListener('beforeunload', onUnload, false);
function onUnload(e)
{
e.returnValue = "some Text";//this is your message
e.preventDefault();
}
</script>