0
我有輸入名爲「For」,另一個名爲「Item」,我想驗證文本輸入爲:
「For」 - >英文字符+數字。
「Item」 - >只是英文字符。jQuery驗證:只是英文字符+只是數字
$("#NewTransactionForm").validate({
rules: {
For: {
required: true
},
Item: {
required: true
}
}
});
我需要在「規則」部分添加什麼?
我已經使用它,但沒有找到解決方案。
還有更多我需要添加到此代碼? –
我通過添加要爲每個規則顯示的消息進行編輯。 –