跨域问题:HTML

时间:2015-03-08 10:20:18

标签: javascript jquery html cors

<iframe src ="http://google.com" width="400" height="300">
  <p>Your browser does not support iframes.</p>
</iframe>

我怎样才能完成这个结果?

我知道CORS和jsonp就是解决方案。但我真的不知道如何实现它。我的网页上没有任何javascript。只是普通的html页面。如果它不可能只做html代码那么我怎样才能实现我的目标

  

的javascript

  

jquery的

。我想在我的iFrame中使用google.com。

2 个答案:

答案 0 :(得分:0)

Google阻止您将自己的网站嵌入iFrame中,因为您不在同一个域(* .google.com)上。

另外:there are a ton of questions like this.检查this answer in particular - 它不是你想要的,但它可能已经足够了。

答案 1 :(得分:-1)

如果我理解你,你想在iframe中显示google.com。 首先,您应该删除src=之间的字母空格,而不是google.com,您应该写http://google.com。这将解决您的问题。看看这个:http://www.w3schools.com/tags/tag_iframe.asp