2014-07-25 419 views
0

我的頁面中有一個iframe會加載本地html內容,但不加載遠程Web內容。Web內容未加載iframe

下面是代碼:

<iframe id="frame1" src="http://localhost/test.html" width="520px" height="400px" scrolling="auto"></iframe> 

這是工作。

但下面的代碼是不工作:

<iframe id="frame1" src="http://www.google.co.in/" width="520px" height="400px" scrolling="auto"></iframe> 

請任何幫助

+1

第二個需要互聯網連接才能工作。 –

+0

是的互聯網連接,,, –

回答

0

如果你看一看到控制檯中看到這一點:

[Error] Refused to display 'https://www.google.co.in/?gws_rd=ssl' in a frame 
because it set 'X-Frame-Options' to 'SAMEORIGIN'. 

意味着什麼,谷歌不希望顯示的iframe中。

更多關於X-Frame-Options