iframe跨域訪問


js跨域是個討論很多的話題。iframe跨域訪問也被研究的很透了。

一般分兩種情況:

一、 是同主域下面,不同子域之間的跨域;

  同主域,不同子域跨域,設置相同的document.domian就可以解決;

     父頁訪問子頁,可以document.getElementById("myframe").contentWindow.document來訪問iframe頁面的內容;如果支持contentDocument也可以直接document.getElementById("myframe").contentDocument訪問子頁面內容;

  子頁訪問父頁,可以parent.js全局屬性

二、 是不同主域跨域;

  前提,www.a.com下a.html,a.html內iframe調用了www.b.com下的b.html,b.html下iframe調用了www.a.com下的c.html

  b.html是不無法直接訪問a.html的對象,因為涉及到跨域,但可以訪問parent,同樣c.html的parent可以訪問b.html。c.html和a.html同域,是可以訪問a下的對象的。parent.parent.js對象!

  看下面實例:

  a.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
</head>

<body>
<iframe src="http://www.b.com/b.html" ></iframe>
<ul id="getText"></ul>
<script>
    function dosome(text){
        document.getElementById("getText").innerHTML= decodeURI(text);    
    }
</script>
</body>
</html>

b.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
</head>

<body>
<iframe id="myfarme" src="###"></iframe>
<ul id="ct">
<li>這里是內容1</li>
<li>這里是內容2</li>
<li>這里是內容3</li>
<li>這里是內容4</li>
<li>這里是內容5</li>
<li>這里是內容6</li>
</ul>
<script>
    window.onload = function(){
        var text = document.getElementById('ct').innerHTML;
        document.getElementById('myfarme').src="http://www.a.com/c.html?content="+encodeURI(text);
    }
</script>
</body>
</html>

c.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<script>
window.onload = function(){
    var text = window.location.href.split('=')[1]
    console.log(parent.parent)
    parent.parent.dosome(text);
}
</script>
</head>

<body>
ddddddddddd
</body>
</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM