0

我在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>
4

1 回答 1

2

问题是因为我的帐户启用了开发模式。如果您启用了它并且发现发生了一些奇怪的事情,请禁用它并重试。目前开发模式存在一些问题。

于 2012-05-01T19:13:32.577 回答