从<object>标记</object>获取窗口顶部

时间:2015-01-26 17:24:37

标签: javascript html browser window

是否可以获取&#34; parent&#34;的窗口数据?窗口,从标签中加载的页面内? 我从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>

结果是两个值:

{}

是否可以获取此数据?怎么样?

0 个答案:

没有答案