是否可以获取" parent"的窗口数据?窗口,从标签中加载的页面内? 我从https://test-static-app.herokuapp.com/嵌入了一个远程html文件,它只是在控制台中输出window.top和window.parent.top。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Test</title>
<script type="text/javascript">
console.log('window.top', window.top.location);
console.log('window.parent.top', window.parent.top.location);
</script>
</head>
<body>
</body>
</html>
结果是两个值:
{}
是否可以获取此数据?怎么样?