我很困难,不得不尽快提交我的项目。我是初学者并且正在使用他的课程。我试图通过绿色勾选实现输入字段和边框成功为绿色。这样做,我的提交按钮无法启用。
以下是代码:
jQuery("#fname").validate({
expression: "if (VAL) return true; else return false;",
message:"<div id='fname_msg'><span class='error_tooltip'><script>document.getElementById('fname').setAttribute('class','field ErrorField')</script>Please fill first name</span></div>"
并且在成功时我将类形式错误字段更改为由我做的成功
jQuery("#fname").validate({
expression: "if (!VAL && !(VAL.match(/[a-zA-Z]+/))) return true; else return false ;",
message:"<div id='fname_msg'><span class='success_tooltip'><script>document.getElementById('fname').setAttribute('class','field success_field')</script>✔</span></div>",
});