重新加载页面而不显示消息框
有谁知道如何通过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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
三种不同的方式:
Three different ways:
我刚刚使用(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.
我刚刚找到了我正在寻找的答案,document.forms[0].submit();
I just found the answer I was looking for, document.forms[0].submit();