重新加载页面而不显示消息框

发布于 2024-09-07 12:14:05 字数 53 浏览 2 评论 0原文

有谁知道如何通过javascript重新加载aspx页面而不弹出消息框询问是否要刷新页面吗?

Does anyont know how to reload an aspx page through javascript without the message box popping up asking if you want to refresh the page?

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

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

发布评论

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

评论(3

久隐师 2024-09-14 12:14:05

三种不同的方式:

window.location.reload()

history.go(0)

window.location.href=window.location.href

Three different ways:

window.location.reload()

history.go(0)

window.location.href=window.location.href
淡莣 2024-09-14 12:14:05

我刚刚使用(javascript)window.location.reload(),但是考虑到您的标签(asp.net 和 c#2.0),我感觉这不是您正在寻找的答案。

I've just been using (javascript) window.location.reload(), but given your tags (asp.net and c#2.0), I get the feeling that's not the answer you're looking for.

命硬 2024-09-14 12:14:05

我刚刚找到了我正在寻找的答案,document.forms[0].submit();

I just found the answer I was looking for, document.forms[0].submit();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文