2012-12-28 110 views
-8

我已經登錄框的網站上,其suposed滑動,但它並沒有真正的工作,我不能弄明白爲什麼,這裏的代碼:Java腳本不工作

<div style="float:right; width:640px; font-size:10px;"> 
<div style="float:right; margin:5px;" align="right"> 

Pentru a va conecta apasati <a onclick="ShowHide(); return false;" href="#">aici</a><br/> 
<a href="/register.php">Inscriere utilizator nou</a> 
</div> 
<div id="loginbox" class="div_login_box"> 
<form action="/login.php" method="post" name="loginform"> 
<table width="420" border="0"> 
    <tr> 
    <td>E-Mail:</td> 
    <td><input name="email" id="email" type="text" size="15" /></td> 
    <td>Cod:</td> 
    <td><input name="password" id="password" type="password" size="15" /></td> 
    <td><input style="border:none" name="submit" type="image" src="/images/ok.png" border="0" value="Ok" /></td> 
    </tr> 
</table> 

</form> 
</div> 
</div> 

這裏在活生生的例子:

http://dev.eurodiet.ro/

+3

您可以將您的javascript代碼 – Dineshkani

+2

您的網站,jQuery和許多腳本加載失敗。查看js控制檯 –

+1

您還沒有定義showhide功能。測試你的腳本 –

回答

3

請不要問我們沒有自己檢查基本的東西來調試你的網站/腳本。

這是Chrome的控制檯輸出(F12CTRL+SHIFT+i

Failed to load resource: the server responded with a status of 404 (Not Found) http://dev.eurodiet.ro/Scripts/jquery-1.4.2.min.js 
Failed to load resource: the server responded with a status of 404 (Not Found) http://dev.eurodiet.ro/Scripts/swfobject_modified.js 
Failed to load resource: the server responded with a status of 404 (Not Found) http://dev.eurodiet.ro/Scripts/jquery-ui-1.8.5.custom.min.js 
Failed to load resource: the server responded with a status of 404 (Not Found) http://dev.eurodiet.ro/Scripts/eurodiet_scripts.js 
Uncaught ReferenceError: swfobject is not defined dev.eurodiet.ro:147 
Uncaught ReferenceError: swfobject is not defined dev.eurodiet.ro:196 
+0

對不起,我甚至不知道在哪裏看,感謝指針。 –

+1

有趣,這是因爲我的腳本文件夾是「腳本」,而不是「腳本」一個小型的錯字,會讓我無休止地「調試」。 Java腳本和ActionScript是CASE SENSITIVE! :) –

+0

如果是這樣的話,那麼Apache是​​(它是)區分大小寫,因爲大多數Unix文件系統。無論哪種方式,我很高興你設法解決這個問題。 –