2013-08-27 52 views
0

這是我正在使用的代碼。在我製作的桌子上有一個iframeHTML iframe不加載scr路徑

<td height="100%"> 
<iframe src="http://mk7vrlist.altervista.org/combocalculator/indextts.html" width="100%" height="100%"> 
    Your browser doesn't load this iframe. 
</iframe> 
</td> 

順便說一句,我的iframe中我沒有看到任何事情,我把該網址無法顯示。我已經搜索了這個,但我沒有找到解決方案。任何幫助?

+0

爲我工作。 http://jsfiddle.net/Y6pVy/ – ThiefMaster

+0

所以我覺得我的瀏覽器有問題,我正在使用最新版本的Firefox –

+0

那麼你有沒有嘗試其他瀏覽器?另外,請注意安全設置。 – GGrec

回答

1

網站類似谷歌和雅虎防止自己的網頁在一個iframe

檢查這個計算器線程google homepage will not load in an iframe

他們利用X-Frame-Options: Deny阻止其加載的iframe內容越來越加載。

嘗試其他任何谷歌以外和雅虎,你會看到,它的作品

<td height="100%"> 
<iframe src="http://www.w3schools.com" width="100%" height="100%"> 
    Your browser doesn't load this iframe. 
</iframe> 
</td> 
+0

謝謝,並使用該'width =「100%」height =「100%」'它將調整iframe的高度與所有我的網頁內容,對吧? –

+0

他鏈接的網站不使用X-Frame-Options。順便說一句,w3schools是一個可怕的網站。即使是測試我不想使用它的東西。除非該測試最終導致該網站被當然關閉:D – ThiefMaster

+0

@AlbertoRossi對於寬度和高度,使用像素代替百分比..somthing,像500px。你會得到更多的控制你的iframe應該看起來像 – Raghu