How can I return a random value from an array?

前端 未结 3 618
迷失自我
迷失自我 2020-11-29 08:08

I\'m using the jQuery validate plugin, and would like to return a random value on success.

Right now I\'m trying to use:

     var success_message =          


        
3条回答
  •  旧时难觅i
    2020-11-29 08:34

    function sucess() {
     message = ["Good!","Awesome!","Super!","Nice!","Great!"];
     return message[Math.floor(Math.random() * message.length)];
    }
    
     $(document).ready(function(){
         var validator = $(".contactform").validate({ ...
                  success: function(label) {
        label.addClass("valid").text(success());
     }
          }); //end form validate code
             });
    

提交回复
热议问题