我正在使用Jquery驗證插件,並且它具有所需屬性的問題,因爲我的表單正在提交,儘管具有必需的屬性。屬性需要不工作在IE8/Safari使用Jquery驗證
我已經嘗試required =「required」,只是本身需要,但沒有運氣。
這裏是我的示例代碼:
<input id="txt_field1" name="txt_field1" type="text" required/>
也試過:
<input id="txt_field2" name="txt_field2" type="text" required="required"/>
我已經找到2種解決方法,但似乎並沒有是最好的方式。
$('form').validate({
rules: {
txt_field1: {
required: true
},
txt_field2: {
required: true
}
}
});
這似乎已經工作,以及:
$('form').validate();
$('input[required]').each(function() {
$(this).rules("add", {
required: true
});
});
有沒有不必添加額外的代碼來得到它的工作更好的辦法?我正在使用Jquery Validate 1.9版。
感謝
嗨,我試過了,它沒有工作。提交的表格並沒有顯示任何錯誤 –