How to disable submit button once it has been clicked?

后端 未结 18 1488
轻奢々
轻奢々 2020-12-01 05:06

I have a submit button at the end of the form.

I have added the following condition to the submit button:

onClick=\"this.disabled=true;
this.value=\'         


        
18条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-01 05:20

    I think easy way to disable button is :data => { disable_with: "Saving.." } This will submit a form and then make a button disable, Also it won't disable button if you have any validations like required = 'required'.

提交回复
热议问题