0
我有這樣的代碼:jQuery的驗證插件:類「錯誤」被添加到輸入元素
<head>
<script>
$(document).ready(function(){
$('form').validate({
rules: { 'input_name': { email: true} },
messages: { 'input_name': "Is not an email" } }) });
</script>
</head>
<body>
<form id="clar">
Escribe ALGO <input name='input_name' type="text" ">
<input type="submit" >
</form>
如果我不插入電子郵件ADDRES,一個錯誤顯示,和..類的「錯誤」被添加到輸入元素。
爲什麼要將該類添加到輸入中?如何避免它?
問候
哈維