vue 如何获取iframe页面的子路由路径
时间: 2023-06-26 17:09:46 浏览: 140
iframe父页面获取子页面参数的方法
可以使用window.frames获取iframe元素,然后使用其contentWindow属性获取子窗口的window对象,最后通过window对象的location属性获取子路由路径。代码示例:
```
let iframe = document.getElementById('my-iframe');
let childWindow = iframe.contentWindow;
let childPathname = childWindow.location.pathname;
```
阅读全文