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