如何使用 javascript 显示类似于此处的警报的内容?

发布于 2024-08-04 14:04:26 字数 37 浏览 5 评论 0原文

如何使用 javascript 显示类似于此处的警报的内容?

How to show something similar to an alert like SO does here with javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心凉怎暖 2024-08-11 14:04:26

你需要做 ajax 轮询,用于在您编写答案时出现的“加载新答案”提醒。

这是 使用 jQuery 的 ASP.NET 教程

对于在开始键入答案/编辑帖子时尝试离开页面时的警报,请查看 onunload事件。使用 confirm 对话框,而不是 警报

you'll need to do ajax polling for the "load new answers" alert that appears whilst you are writing an answer.

Here's a nice tutorial for ASP.NET using jQuery

For the alert when you attempt to navigate away from a page when you have started typing an answer/ editing a post, look at the onunload event. A confirm dialog is used as opposed to an alert

少年亿悲伤 2024-08-11 14:04:26

当您尝试离开评论/答案已部分填写的页面时,我们是否在谈论 SO 警告您?查看 Javascript 中的 onunload() 方法。有关示例,请参阅此处

Are we talking about SO warning you when you try to navigate away from a page with a partially filled in comment/answer ? Check out the onunload() method in Javascript. See here for an example.

掀纱窥君容 2024-08-11 14:04:26

将此脚本添加到页面的头部:

<script language="javascript">
  window.addEventListener('beforeunload', onUnload, false);
  function onUnload(e)
  {
    e.returnValue = "some Text";//this is your message
    e.preventDefault();
  }
</script>

add this script to the head portion of your page:

<script language="javascript">
  window.addEventListener('beforeunload', onUnload, false);
  function onUnload(e)
  {
    e.returnValue = "some Text";//this is your message
    e.preventDefault();
  }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文