內嵌頁面iframe以及和其兄弟iframe的相互傳值

主要知識點
javascript

1:document.getElementById("ii").contentWindow 獲得iframe對象後,就能夠經過contentWindow獲得iframe包含頁面的window對象,而後就能夠正常訪問頁面元素了;
html

2:$("#ii")[0].contentWindow  若是用jquery選擇器得到iframe,須要加一個【0】;
java

3:$("#ii")[0].contentWindow.$("#dd").val() 能夠在獲得iframe的window對象後接着使用jquery選擇器進行頁面操做;
jquery

4:$("#ii")[0].contentWindow.hellobaby="dsafdsafsdafsdafsdafsdafsadfsadfsdafsadfdsaffdsaaaaaaaaaaaaa"; 能夠經過這種方式向iframe頁面傳遞參數,在iframe頁面window.hellobaby就能夠獲取到值,hellobaby是自定義的變量;
ui

5:在iframe頁面經過parent能夠得到主頁面的window,接着就能夠正常訪問父親頁面的元素了;
spa

6:parent.$("#ii")[0].contentWindow.ff; 同級iframe頁面之間調用,須要先獲得父親的window,而後調用同級的iframe獲得window進行操做;code

源碼orm

源碼包含內容,主頁面(main.html)中含有兩個iframe子頁面(frame.html,newIframe.html)htm

  1. 主頁面如何調用子頁面中的方法;對象

  2. 子頁面如何調用主頁面中的方法;

  3. 兩個子iframe之間如何如何進行交互

main.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>顯示圖表</title>
<script src="http://www.cnblogs.com/http://www.cnblogs.com/scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
    var gg="dsafdsafdsafdsafsdaf";
    function ggMM() {
        alert("2222222222222222222222222222222");
    }
    function callIframeMethod() {
        //document.getElementById("ii").contentWindow.test();
        $("#ii")[0].contentWindow.test(); //用jquery調用須要加一個[0]
    }
    function callIframeField() {
        alert($("#ii")[0].contentWindow.ff);
    }
    function callIframeHtml() {
        alert($("#ii")[0].contentWindow.$("#dd").val());
        //alert($("#ii")[0].contentWindow.document.getElementById("dd").value);
        //alert($("#ii")[0].contentWindow.document.getElementById("dd").value);                
    }    
    function giveParameter() {
        $("#ii")[0].contentWindow.hellobaby="dsafdsafsdafsdafsdafsdafsadfsadfsdafsadfdsaffdsaaaaaaaaaaaaa";
    }
</script>
</head>
<body>
    <a href="#" onClick="giveParameter();">參數傳遞</a>
    <a href="#" onClick="callIframeMethod();">調用子iframe方法</a>
    <a href="#" onClick="callIframeField();">調用子iframe變量</a>
    <a href="#" onClick="callIframeHtml();">調用子iframe組件</a></br>    
    <iframe id="ii" src="frame.htm" width="100%" frameborder="0"></iframe>
    <iframe id="new" src="newFrame.htm" width="100%" frameborder="0"></iframe>
</body>
</html>

frame.htm:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>顯示圖表</title>
<script src="http://www.cnblogs.com/http://www.cnblogs.com/scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">

var ff="adfdasfdsafdsafdsaf";
function test() {
    alert($("#dd").val());
}
function callMainField() {
    alert(parent.gg);
}
function callMainMethod() {
    parent.ggMM();
}
function callMainHtml() {
    alert(parent.$("#ii").attr("id"));
}
function getParameter() {
    alert(window.hellobaby);
}
</script>
</head>
<body>
    <a href="#" onClick="getParameter();">接受參數</a>
    <a href="#" onClick="callMainMethod();">調用子iframe方法</a>
    <a href="#" onClick="callMainField();">調用主窗口變量</a>
    <a href="#" onClick="callMainHtml();">調用子iframe組件</a>    
    <input id="dd" type="text" value="1111111111"/>
</body>
</html>

兄弟iframe頁面 newIframe.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>顯示圖表</title>
<script src="http://www.cnblogs.com/http://www.cnblogs.com/scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
function callLevelFrame() {
    var ff=parent.$("#ii")[0].contentWindow.ff;
    alert(ff);
}
</script>
</head>
<body>
    <a href="#" onClick="callLevelFrame();">調用兄弟iframe</a>    
    <input id="nn" type="text" value="sdafsdfsa"/>
</body>
</html>

若是是在easyui的tab的選項卡中,有個實例這麼作:

//獲得被選中的tab對象        
var tab=parent.$("#tabs").tabs("getSelected");
//該iframe是在tab選項卡中的一個內嵌的iframe,獲取該頁面的id爲tableId的值
tab.panel("body").find("iframe")[0].contentWindow.$("#tableId").val(id);
//獲取被選中的tab的內嵌頁面iframe的id爲clcs的datagrid,並從新加載數據
tab.panel("body").find("iframe")[0].contentWindow.$('#clcs').datagrid('reload');
相關文章
相關標籤/搜索