首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iframe访问parent.location.hash疏失

2012-10-08 
iframe访问parent.location.hash出错在使用iframe来实现跨域访问的时候,一直是通过parent.location.hash来

iframe访问parent.location.hash出错
    在使用iframe来实现跨域访问的时候,一直是通过parent.location.hash来实现父窗口和子窗口之间的通信的,但是需要注意到是:子窗口是不能直接设置parent.location.hash的,因为跨域访问父窗口的location的hash属性是被禁止的,而是应该直接设置parent.location.
    比如原来是设置: parent.location.hash = "#foobar";
    则需要修改为:parent.location = "http://example.com/page/#foobar";

来源:http://stackoverflow.com/questions/4324108/unsafe-javascript-attempt-to-access-frame-with-url

热点排行