拒绝访问IFRAME中的属性的权限
我的jsp页面中有一个链接。
链接看起来像这样
<a href="javascript:doSomething('abc.ff' , 'abc.ff?m=1')">
javascript代码
function doSomething(url, url_progress){ parent.win1.location.href = url;
/* Wait until something surely has started! */
window.setTimeout("this.startFinally()", 1000);
this.startFinally = function (){
location.href = url_progress;
}
}
当用户对此进行叮当响时,一切正常。现在,最近我将此代码放在Iframe中,然后什么也没有发生。我检查了萤火虫,并收到此错误:
Permission denied to access property 'win1' [Break On This Error] parent.win1.location.href = url;
可能是什么问题?
回答:
可能采用了相同的原始策略。是否所有内容都来自同一主机/端口?
以上是 拒绝访问IFRAME中的属性的权限 的全部内容, 来源链接: utcz.com/qa/413034.html