记录iframe的历史记录

时间:2016-04-25 23:04:57

标签: javascript iframe

我正试图在维基百科上创建五次点击希特勒游戏。我这样做是让玩家从维基百科的随机页面导航到希特勒个人资料页面。为此,我需要仅在iframe中记录用户的历史记录。我这样做有困难。到目前为止,我的代码相对基本,但我需要帮助记录这段历史。到目前为止,这是我的HTML:

<head>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
    <iframe id="iframe" 
           name="iframeName" src="https://en.wikipedia.org/wiki/Special:Random"></iframe>
           <script>
           console.log(document.getElementById("iframe").contentWindow.history.length);
           </script>
</body>

作为回应,我收到此错误:

VM108:1 Uncaught DOMException: Blocked a frame with origin "null" from accessing a cross-origin frame.(…)(anonymous function) @ VM108:1InjectedScript._evaluateOn @ VM101:145InjectedScript._evaluateAndWrap @ VM101:137InjectedScript.evaluate @ VM101:118

这是Chrome中的安全问题吗?这种历史方法的容量是多少?它能记录多达五个站点吗?

1 个答案:

答案 0 :(得分:2)

你不能这样做。遗憾。

iframe的当前位置与子窗口的所有其他属性一样,只有在父页面查看同一域中的页面时才可见。