我有一个iframe,我从一个页面重定向到另一个页面,但在请求的页面调用之后,我想滚动iframe窗口的父级。所以我使用“window.parent.scroll(0,0)”但在IE浏览器中我收到错误“Access is Denied”我无法检索iframe的父元素。这段代码如下
<a href="javascript:void(0);" onclick='window.parent.scroll(0,0)'><img width="108" height="30" alt="How to Play" src="images/btnimg.png" onclick="setTimeout(function(){window.location.href='somepage.jsp'},200);"/></a>
请告诉我解决方案。