在此 Codelab 中,您将了解在访问 iframe 内的数据时,同源政策会如何发挥作用。
设置:包含同源 iframe 的网页
此页面在同一源中嵌入了一个名为 iframe.html
的 iframe
。由于主机和 iframe 共享同一源,因此托管网站能够访问 iframe 内部的数据,像炸弹一样公开秘密消息。
const iframe = document.getElementById('iframe');
const message = iframe.contentDocument.getElementById('message').innerText;
更改为跨源 iframe
请尝试将 iframe
的 src
更改为 https://other-iframe.glitch.me/
。托管页面是否仍然可以访问密文?
由于主机和嵌入的 iframe
没有相同的来源,因此对数据的访问受到限制。