使用 salesforce 在 apex 中单击按钮时关闭当前弹出窗口
我的情况很奇怪,
我有一个顶点页面 在该页面内有一个按钮,单击该按钮我将其称为 javascript 方法。 从这个方法中,我调用 window.open(url) 并打开一个新的弹出窗口。
现在这个新窗口也是一个顶点页面。 此窗口包含一个按钮。单击此按钮时我想使用 JavaScript 关闭当前弹出窗口。
有人可以建议我该怎么办吗?
我尝试过:
**
window.close();
self.close();
**
我尝试过使用 apex 命令按钮 以及 HTML 按钮。
但窗口仍然无法关闭。
i am in a strange situation
I have an apex page
inside that page there is a button on the click of which i call a a javascript method.
From this method i call window.open(url) and open a new popup window.
Now this new window is also an apex page.
This window contains a button.on the click of this button i want to close the current popup window using javascript.
can anybody suggest me what should i do?
i have tried:
**
window.close();
self.close();
**
I have tried with apex command button as well as with the HTML button.
but still window cant be closed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许与此相同的问题: 在 Visualforce 页面中,是否可以在 Firebug 控制台中使用命令行?
因此,请尝试禁用用户的开发模式。
索伦
Perhaps same issue as this: In Visualforce pages, is it possible to use the command line in the Firebug console?
So try disabling development mode on your user.
Søren