Disable submit button ONLY after submit

前端 未结 13 672
囚心锁ツ
囚心锁ツ 2020-12-02 22:49

I have the following HTML and jquery:






Test disabling submit button fo

13条回答
  •  旧时难觅i
    2020-12-02 23:34

    I put this in my global code to work on all submit buttons:

    $("input[type='submit']").on("click", function (e) {
        $(this).attr("disabled", true);
        $(this).closest("form").submit()
    });
    

提交回复
热议问题