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')
            });

  

posted @ 2020-09-10 15:16  随意滴博客  阅读(1737)  评论(0编辑  收藏  举报