我想驗證一個與jQuery表單驗證。所以我包括以下coads。聯繫表格驗證使用jquery
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2 /jquery.min.js"></script>
<script type="text/javascript" src=" http://jzaefferer.github.com/jquery-validation/jquery.validate.js"></script>
<script type="text/javascript">
$(function() {
$('#contact-form').validate({
rules:{
name:{
required:true
},
email:{
required:true,
email:true
}
}
});
});
</script>
但是當我點擊提交按鈕則顯示錯誤像
TypeError: $("#contact-form").validate is not a function
幫助我。
+1,good catch :) – Rafay
謝謝..我修正了錯誤..現在它工作的很好。 –