2013-12-10 39 views
0

我的聯繫我們頁面使用jQuery插件來顯示背景導航效果。奇怪我發現它不工作,因爲它是在localhost.WHat可能是錯誤?一個頁面不會顯示預期的jQuery插件在線,但本地作品完美

checked console in chrome,it says certain images are missing but I found they exist in FTP. Permision for contact-us.php(the problematic page) is 644 in ftp.

我沒有使用jQuery.noConflict這個插件腳本,我使用的約3 jQueries在這個頁面。

請注意。

控制檯錯誤:

Failed to load resource: the server responded with a status of 404 (Not Found) http://183.81.165.27/~vani/project/css/images/dock-bg.gif 

Failed to load resource: the server responded with a status of 404 (Not Found) http://183.81.165.27/~vani/project/images/1.jpg 

event.returnValue is deprecated. Please use the standard event.preventDefault() instead. 
+1

3 jQueries?!?!這是混亂。聽起來像也許你只是忘了上傳文件?或者該網站可能生活在一個子目錄中?是否以「/」開頭的js文件的src =「」值?使用鉻,並看看控制檯我敢打賭,有一個網絡錯誤,說一個JS文件無法加載。 – Lenny

+0

從協調所有路徑問題開始....在瀏覽器控制檯的網絡選項卡中查找。如果瀏覽器無法獲取文件....則存在路徑問題。此外,請檢查控制檯中引發的所有腳本錯誤 – charlietfl

+0

另外,如果您無法弄清楚,請查看其他錯誤並報告回來。 – Lenny

回答

0

碼頭-BG正在尋找的CSS目錄這樣這是一個404

http://183.81.165.27/~vani/project/css/images/dock-bg.gif 

it should be: 

http://183.81.165.27/~vani/project/images/dock-bg.gif 

對於其他它是一個資本化發行的內部。你可能測試在Windows(不區分大小寫),並且您已經部署在Linux上區分大小寫

It's looking for: 
http://183.81.165.27/~vani/project/images/1.jpg 

which doesn't exist the actual file can be found here (capital JPG): 
http://183.81.165.27/~vani/project/images/1.JPG 
+0

,你是正確的..使用窗口來測試和運行在Linux ..但我只是想知道這是如何影響jQuery,因爲這兩個圖像不需要特定的頁面? –

+0

修復錯誤,看看它是否消失。我只是猜測,但在我看來,也許jQuery嘗試加載第一張圖片(1.jpg是幻燈片中的第一張圖片?),然後當它失敗時,它不會繼續。很有可能它會沿着設置圖像的方向做一些事情,然後在onload上開始幻燈片放映。由於它從未實際加載幻燈片永遠不會啓動。再次,只是猜測。 – Lenny

+0

你的輝煌!它一旦我解決了圖像問題的作品..謝謝很多.. –

相關問題