Js ifame和父視窗內函數如何互調

來源:互聯網
上載者:User

頁面A,其內部有個iframe,部分 html代碼如下:

[html]
<div><iframe name="ifm" width="100%" height="829" id="ifmApp" src="B.asp?co=1&tp=5&ut=1&id=&gd=11&gm=1&ar=2&sv=0" frameBorder="0" marginWidth="0" marginHeight="0" scrolling="no"></div> 
 
A頁面中有段js指令碼如下:

www.2cto.com
[javascript]
var System={     
    CloseFrame:function () { 
        try{ 
                var frames=document.getElementById("ifmApp");  
                var AppHelper= frames.contentWindow.AppHelper;  
                if(AppHelper!=null && typeof(AppHelper)=="object"&&typeof(AppHelper.CloseQuery)=="function"){                 
                    if(!AppHelper.CloseQuery())return ;  
                } 
            }catch(e){             
            }     
       System.Close(); 
    }, 
    Close:function () { 
        document.body.removeChild(ifrm); 
    }    
}; 

iframe src所對應的B.asp頁面,其中有js函數:

[javascript]
var Apphelper={ 
    CloseQuery:function(){ 
        if(val="1")return true; 
        return false; 
    }, 
    Close:function(){            
        if(parent!=null&&typeof(parent)=="object"){              
                var System=parent.System; 
                if(System!=null && typeof(System)=="object"){ 
                    if(System.Close!=null && typeof(System.Close)=="function"){ 
                        System.Close(); 
                        return; 
                    } 
                } 
            } 
    }    
}; 

父頁面A,通過調用自己的System.CloseFrame來調用ifrme中的函數Apphelper.CloseQuery
Ifame中的B頁面,通過調用自己的Apphelper.Close函數來調用父視窗中的System.Close

當然,實現這樣的簡單調用有個前提,就是A和B需要同域。

摘自 心靈淨土

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.