IE9 不会让我从 iframe 中重新加载父窗口。这是我的代码
if(result != 0)
{
window.location.reload();
}
else
{
alert(alert_arr.fail_document_save);
}
return true;
IE9 输出:SCRIPT70:权限被拒绝
有什么解决办法吗?
IE9 不会让我从 iframe 中重新加载父窗口。这是我的代码
if(result != 0)
{
window.location.reload();
}
else
{
alert(alert_arr.fail_document_save);
}
return true;
IE9 输出:SCRIPT70:权限被拒绝
有什么解决办法吗?
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;
按照这个答案。