我在salesforce的页面上有一个自定义按钮,这个按钮触发了一个js代码
window.open("{!$Label.SF_Base_URL}/apex/DeletePageiFrame",300,300);
DeletePageiFrame 是一个顶点页面,它有一个 iframe(用于外部网站)和一个应该在单击时刷新父窗口的按钮。
<form>
<INPUT TYPE="button" NAME="myButton" onclick="handleOnClose();" value="press to close"/>
</form>
//the js function
function handleOnClose()
{
alert(window.parent.location); // this gives child window location instead
window.parent.location.reload(); //refreshes child not parent
// window.top.location.reload();
// all the functions bellow didnt work.
// window.opener.location.reload(true);
// window.opener.location.reload(false);
// opener.location.reload();
// opener.reload();
// window.opener.location.reload();
// document.opener.document.location.href = document.opener.document.location.href;
}
我还尝试触发窗口关闭事件以调用父窗口刷新,但我遇到了 chrome 问题,并且子窗口被刷新而不是父窗口。
<script> window.onBeforeUnload=handleOnClose();</script>