2011-10-21 109 views
4

嗨,那裏我是一名學生,正在練習如何使用記事本在簡單的html中放置類似框的插入代碼, 這裏是簡單的代碼我與樣箱堵漏代碼寫:錯誤6(net :: ERR_FILE_NOT_FOUND):無法找到文件或目錄

<html> 
    <head> 
     <title>My Great Web page</title> 
    </head> 
    <body> 
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Febitesblog&amp;width=292&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=true&amp;height=590" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:590px;" allowTransparency="true"></iframe> 
    </body> 
</html> 

,當我嘗試在瀏覽器中執行它說: 此網頁無法找到 未在此網址找到網頁地址:

file://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Febitesblog&width=292&colorscheme=light&show_faces=true&border_color&stream=true&header=true&height=590 
Error 6 (net::ERR_FILE_NOT_FOUND): The file or directory could not be found 

希望他們會f九,我的問題,謝謝:)

回答

0
<iframe src="//www.facebook.com/plugins/likebox... 

應該是...

<iframe src="https://www.facebook.com/plugins/likebox... 
7

它的失敗,因爲該//是相對的協議意味着它加載鏈接/照片/樣箱/使用任何用於訪問頁面本身的相同協議。

  • 通過HTTP訪問頁(http://)時,將樣箱將被包括在HTTP
  • 通過HTTPS訪問的頁面(https://)時,將樣箱將被包括在HTTPS上

您正在通過文件協議(file://)訪問本地主機上的文件 - 這意味着它會嘗試以相同方式包含Like框,由於您的計算機上沒有名爲「www.facebook」的文件,因此無效.com`

立即使用<iframe src="https://...,並在您上傳到服務器時將其更改回<ifame src=//...

相關問題