首页 > 代码库 > iframe 跨域请求

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 = http://www.mamicode.com/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 = http://www.mamicode.com/url +"#" + t.value + "<br/>" + new Date(); /////子窗口向父窗口传递数据
23 }

iframe 跨域请求