从iframe访问localStorage

时间:2019-03-11 20:25:10

标签: local-storage

我创建了一个页面,我在其中加载了iFrame。在iframe中加载的网站具有一个变量,该变量存储在本地存储中。如果右键单击检查,我可以看到该变量,但是无法使用javascript将其检索到主页。有什么办法可以从localstorage检索该变量并在主页中使用它?

    <iframe src="https://example.com" ></iframe>

<button onclick="s()">Test</button>
<script type="text/javascript" >
function s(){
var a = localStorage.getItem("token");
console.log(a);
}

我得到的结果为空

0 个答案:

没有答案