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

  

相关文章:

  • 2022-12-23
  • 2021-10-07
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
  • 2021-05-23
猜你喜欢
  • 2022-12-23
  • 2021-11-14
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2021-10-17
相关资源
相似解决方案