window.location.reload(true) 仅适用于真实浏览器,不适用于 VB.net WebBrowser Control
我的网页上有一个运行一些 JavaScript 代码的按钮:
alert("即将刷新");
window.location.reload(true);
它适用于我们测试过的所有浏览器。
但是当我在 vb.net 可执行文件(在 WebBrowser 控件中)中显示该网页时......“刷新”代码肯定会运行,但它只是清除屏幕。
有谁知道为什么?
I have a button on my webpage that runs some javascript code:
alert("Will refresh now");
window.location.reload(true);
It works in all the browsers we've tested it in.
But when I display that webpage inside my vb.net executable (in a WebBrowser control)... the "refresh" code is definitely run, but it just clears the screen.
Does anyone know why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚尝试了这个非常简单的 HTML/Javascript,页面刷新对我来说很好。
I just tried this very simple bit of HTML/Javascript and the page refreshes just fine for me.