window.location.reload(true) 仅适用于真实浏览器,不适用于 VB.net WebBrowser Control

发布于 2024-11-09 19:32:39 字数 241 浏览 5 评论 0原文

我的网页上有一个运行一些 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 技术交流群。

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

发布评论

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

评论(1

糖果控 2024-11-16 19:32:39

我刚刚尝试了这个非常简单的 HTML/Javascript,页面刷新对我来说很好。

<html>
<head><title>Test</title></head>
<body>
<script type="text/javascript">var d = new Date(); document.write(d);</script>
<input type="button" onclick="window.location.reload();" value="Click"/>
</body>
</html>

I just tried this very simple bit of HTML/Javascript and the page refreshes just fine for me.

<html>
<head><title>Test</title></head>
<body>
<script type="text/javascript">var d = new Date(); document.write(d);</script>
<input type="button" onclick="window.location.reload();" value="Click"/>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文