Jquery通过submitHandler 实现验证后跳转到别的页面

小鱼想实现通过验证后,跳转到下一个页面

代码如下:

$().ready(function() {
    
     $("#accountBtn").click(function(){
         $("#accountForm").submit();  //accountForm是button的id,我是通过点击button来实现submit然后触发validate。
     });
    
     $("#accountForm").validate({   //accountForm是form的id
    

    rules: {
             glAccountCode : "required"
    
     },
           messages: {
               glAccountCode: "必填"
     },
     errorElement:"em",

     submitHandler: function() { location.href ="mylist.jsp";}    //跳转到mylist.jsp页面,注意路径哦~我这里有位都放在一个路径下这么写的。

     });
});


submitHandler 是表单全部校验通过之后进行的动作

你可能感兴趣的:(java,编程)