我当前接受整数的验证器是
$( "#UserForm" ).validate({ rules: { contact: { required: true, number: true, minlength: 6, } } });
它工作正常
但现在我想改变它以便也接受空间.
我的代码应该是什么?请帮助我在jquery中初学者
jquery jquery-validate
jquery ×1
jquery-validate ×1