gpt4 book ai didi

iframe - 为什么 Google 群组页面不会在 WebKit Iframe 中加载?

转载 作者:行者123 更新时间:2023-12-04 07:00:49 28 4
gpt4 key购买 nike

在 Chrome 和 Safari 中,以下内容作为空白帧加载。

<html>
<head>
<title>Iframe Test</title>
</head>
<body>
<iframe src="http://groups.google.com/group/websync"></iframe>
</body>
</html>

然而 direct URL工作正常。是什么赋予了?

最佳答案

它不是 Chrome/WebKit 问题。事实上,它是一个 Firefox 问题。

尝试以下操作,Chrome 将加载 iframe

<html>
<head>
<title>Iframe Test</title>
</head>
<body>
<iframe src="http://groups.google.com/"></iframe>
</body>
</html>

发生的事情是,当您请求网页 groups.google.com/group/websync 时
谷歌网络服务器正在设置 HTTP header
X-Frame-Options: SAMEORIGIN
当 X-Frame-Options: 设置为 SAMEORIGIN 时,浏览器假设只允许
由同一源域内的页面构成的内容,即除非您
页面来自 google.com,浏览器不应该让你框架
http://groups.google.com/group/websync的内容.

WebKit 做得更好。

关于iframe - 为什么 Google 群组页面不会在 WebKit Iframe 中加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1868751/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com