0

IE9 不会让我从 iframe 中重新加载父窗口。这是我的代码

  if(result != 0)
  {
     window.location.reload();
  }
  else
  {
     alert(alert_arr.fail_document_save);
  }
  return true;   

IE9 输出:SCRIPT70:权限被拒绝

有什么解决办法吗?

4

1 回答 1

0
if(result != 0)
  {
    var selfUrl = unescape(parent.window.location.pathname);

    parent.window.location.replace(selfUrl);

    parent.window.location.href = selfUrl;
  }
  else
  {
     alert(alert_arr.fail_document_save);
  }
  return true;

按照这个答案。

于 2012-05-25T17:02:37.640 回答