2014-05-25 63 views
0

此表單在jsfiddle上完美工作,但在localhost上不會這樣做。我有圖書館鏈接,並擁有一切就像這樣:Jquery表單驗證實時不在本地主機上工作,但在Jsfiddle上工作

<form method="post" action="" id="regForm"> 
    <input type="text" name="user_email"> 
</form> 

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> 
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.12.0/jquery.validate.min.js"></script> 
<script> 
$(document).ready(function() { 
     $("#regForm").validate({ 
      rules: { 
       user_email: { 
        required: true 
       } 
      } 
     }); 
    }); 
</script> 

但我不能出現在屏幕上的localhost上由於某種原因,消息

http://jsfiddle.net/FbAYz/17/

+0

什麼錯誤,如果有的話,顯示在控制檯?你能發佈一個更完整的例子嗎? –

+0

「Uncaught ReferenceError:$ is not defined」,這沒有任何意義 – Gadgetster

+1

聽起來像你沒有加載jQuery庫,無論是在所有或錯誤的順序。它必須在**驗證腳本之前加載**。很難說根據你迄今爲止顯示的內容。 –

回答

0

嘗試這種方式,使衝突可以得到解決。

相關問題