how to open google links inside iframe?(如何在 iframe 中打开谷歌链接?)
问题描述
我正在尝试在 iframe 中打开谷歌搜索.它一直工作到最近,但发生了一些事情.
i am trying to open a google search inside an iframe. it was working until recently but something happened.
这可以在这里测试:http://jsfiddle.net/patrioticcow/xTjyX/
我还在链接的末尾添加了 &output=embed
,但看起来没有帮助.
i also added &output=embed
at the end of the link, but it looks like it doesn't help.
在 chrome 中我得到:拒绝显示文档,因为 X-Frame-Options 禁止显示.
但它也不适用于 Mozilla.
in chrome i get: Refused to display document because display forbidden by X-Frame-Options.
but it doesn't work in Mozilla also.
有什么想法吗?
谢谢
推荐答案
X-Frame 选项是由您尝试嵌入 iframe 的页面的网络服务器发送的标头.它基本上告诉浏览器不允许将页面嵌入到 iframe 中.看看 https://developer.mozilla.org/en/The_X-FRAME-OPTIONS_response_header 更详细的描述.
The X-Frame option is a header sent by the webserver of the page you are trying to embed into the iframe. It basically tells the browser not to allow embedding the page in an iframe. Have a look at https://developer.mozilla.org/en/The_X-FRAME-OPTIONS_response_header for a more detailed description.
显然,Google 不希望您将其搜索结果嵌入到 iframe 中.
Obviously Google does not want you to embed it's search results into an iframe.
这篇关于如何在 iframe 中打开谷歌链接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 iframe 中打开谷歌链接?
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01