iframe 跨域请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe 跨域请求相关的知识,希望对你有一定的参考价值。

iframe.contentWindow 兼容各个浏览器,可取得子窗口的 window 对象。

iframe.contentDocument Firefox 支持,> ie8 的ie支持。可取得子窗口的 document 对象。

http://www.cnblogs.com/rainman/archive/2011/02/20/1959325.html
 
1.跨域请求,hash方法
    
    父窗口
16 function sendRequest()
17 {
18   var d = document;
19   var t = d.getElementById(‘request‘);
20   var f = d.getElementById(‘alienFrame‘);
21   f.src = url + "#" + t.value + "<br/>" + new Date(); /////父窗口向子窗口传递数据
22 } 
 
    子窗口
16 function sendRequest()
17 {
18   var d = document;
19   var t = d.getElementById(‘request‘);
20   var f = parent;
21   //alert(f.document); //试着去掉这个注释,你会得到“Access is denied”
22   f.location.href = url + "#" + t.value + "<br/>" + new Date(); /////子窗口向父窗口传递数据
23 }

以上是关于iframe 跨域请求的主要内容,如果未能解决你的问题,请参考以下文章

django 使用iframe跨域请求

js跨域问题

iframe跨域+

JS跨域:jsonp跨域资源共享iframe+window.name

Iframe通信

利用 iframe解决ajax的跨域问题