转:iframe跨域刷新父窗口

转载自:http://hi.baidu.com/phpcnblog/item/16810cce280ac7d1ef183bce

如果一个网站有多个子域名,任何一个子域名独立网站的页面布局中难免会用到iframe调用,必然会用到iframe自适应高度的js调试,那么存在跨子域问题的调用也会牵扯到访问权限的问题!

例如:页面http://test3.my.cntv.cn/diary/index.php/patchs/?patch=view&uid=14147339&tid=141473391341284001 里有一个iframe

< iframe id="commlist" height="40" src="http://bbs.cntv.cn/cctvapi/Comment/sns/iframe.php?id=141473391341284001&authorid=14147339" frameborder="0" width="100%" scrolling="no"></iframe>

挡在iframe中刷新父页面的时候会报错,没有权限。

解决方案:需要2个页面中都各自加上下面的js代码即可获得访问权限!

<script type="text/javascript"> 
<!-- 
document.domain='cntv.cn'; 
--> 
</script>

但是上面的解决方案只能在同一主域才能生效,当你尝试替换document.domain的值为其他网站时,会报错,也就是说,上述方法只是对跨子域的解决方案,真正的跨域好像是现在的浏览器还不允许的。

你可能感兴趣的:(跨域,iframe)