How to submit a form in Semantic UI?

后端 未结 8 1467
南旧
南旧 2021-02-04 07:57

I know how to validate a form using Semantic UI, and can even read in console the message \"Form has no validation errors, submitting.\" However, where is this submitting to? I

8条回答
  •  遥遥无期
    2021-02-04 08:45

    What if you don't wana use ajax?!

    Use this one:

    $( "#reg_btn" ).click(function(event){
        event.preventDefault();
        $('#register_form').submit();
    
    });
    

    in this case u can use

提交回复
热议问题