有兩個字段用戶名和密碼,我用validate[required]
類。現在在jquery驗證引擎中顯示自定義消息
<input id="username" name="username" class="validate[required] text-input" placeholder="Enter your username" type="text">
<input id="password" name="password" class="validate[required] text-input" placeholder="Enter your password" type="password">
jQuery("#loginForm").validationEngine('attach', {
promptPosition: "topRight",
scroll: false
});
當我點擊提交按鈕,它顯示了其標準的消息,但我想告訴我的自定義信息。做這個的最好方式是什麼?
你是什麼意思定製和標準的消息 –
https://github.com/posabsolute/jQuery-Validation-Engine#custom_error_messages – Jai
標準消息,如果我申請驗證[必需],那麼它顯示字段是必需的。我的意思是自己的消息 –