我的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中然后没有任何反应。我用firebug检查并得到了这个错误:
Permission denied to access property 'win1'
[Break On This Error] parent.win1.location.href = url;
可能是什么问题?