如何在 iframe 中显示 www.imdb.com?
How to show www.imdb.com in iframe?
我想在 iframe 中显示 http://www.imdb.com,但下面的代码不起作用。
<!DOCTYPE html>
<html>
<body>
<iframe src="http://www.imdb.com/" width="400" height="400"></iframe>
</body>
</html>
有谁知道原因吗?非常感谢。
原因是,imdb.com 正在发送 "X-Frame-Options: SAMEORIGIN" 响应 header。此选项可防止浏览器显示与 parent 页面不在同一域中的 iFrame。
参见:Mozilla Developer Network - The X-Frame-Options response header
我想在 iframe 中显示 http://www.imdb.com,但下面的代码不起作用。
<!DOCTYPE html>
<html>
<body>
<iframe src="http://www.imdb.com/" width="400" height="400"></iframe>
</body>
</html>
有谁知道原因吗?非常感谢。
原因是,imdb.com 正在发送 "X-Frame-Options: SAMEORIGIN" 响应 header。此选项可防止浏览器显示与 parent 页面不在同一域中的 iFrame。
参见:Mozilla Developer Network - The X-Frame-Options response header