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