[size=medium][color=green] 在使用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[/color][/size]
比如原来是设置: parent.location.hash = "#foobar";
则需要修改为:parent.location = "http://example.com/page/#foobar";
来源:http://stackoverflow.com/questions/4324108/unsafe-javascript-attempt-to-access-frame-with-url[/color][/size]
本文详细解释了如何在使用iframe实现跨域访问时,通过正确设置parent.location来实现父窗口和子窗口之间的通信。强调了直接设置parent.location.hash的限制,并提供了替代方法。
1097

被折叠的 条评论
为什么被折叠?



