为了账号安全,请及时绑定邮箱和手机立即绑定

就是在学rotate远程校验的时候,谁有写好的代码吗

我把老师的视频下载下来,跟着视频一起写,怎么都不对

正在回答

1 回答

<script>
   $(document).ready(function(){
       $("#demoForm").validate({
           debug:true,
           rules:{
               username:{
                   required:true,
                   //minlength:2,
                  // maxlength:10,
                   rangelength:[2,10],
                   remote:{
                       url:"remote.json",
                       type:"post",
                       data:{
                           loginTime:function(){
                               return +new Date;
                           }
                       }
                   }
               },
               password:{
                   required:true,
                   minlength:2,
                   maxlength:16,
               },
           },
           message:{
               username:{
                   required:"必须填写用户名",
                   minlength:"必须填写至少2位",
                   maxlength:"必须填写用户名至少10位"
               },
               password:{
                   required:"必须填写密码",
                   minlength:2,
                   maxlength:16,
               },
           },
       });

   });
</script>

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

就是在学rotate远程校验的时候,谁有写好的代码吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信