Firefox 中调用 window.open 时出现问题

发布于 2024-11-04 01:52:31 字数 248 浏览 0 评论 0原文

当我在 apex 中的图表链接中调用此代码时

javascript:window.open('http://google.pt','mywindow','width=400,height=200', 'bReplace =true');

它会打开一个带有 google 页面的新窗口,但将图表页面与一个空白页面放在一起,上面写有 [object Window]

我如何维护图表页面?

When i'm calling this code in the link of a chart in apex

javascript:window.open('http://google.pt','mywindow','width=400,height=200', 'bReplace=true');

it opens a new window with google page but puts the chart page with a blank page with [object Window] wrote on it

How can i maintain the chart page?

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

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

发布评论

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

评论(1

折戟 2024-11-11 01:52:32

您需要强制表达式不返回值:

javascript:void(window.open(...))

You need to force the expresion to not return a value:

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