iframe 內嵌頁面傳值


Vue系統里面用iframe嵌套了公司另一個系統里面的頁面(HTML頁面),現在要點擊嵌套的頁面,跳轉到vue項目中的其他頁面

vue 

 window.addEventListener('message', function(event){
        console.log(event.data);
    }, false);


html

  $(document).click(function(){
                console.log("click")
                var data = "傳值"
                top.postMessage(data, 'http://localhost:8090/#/emptyFile/commandCenter')
            });

  


免責聲明!

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



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