prevent multiple form submissions using angular.js - disable form button

后端 未结 9 749
耶瑟儿~
耶瑟儿~ 2020-12-13 21:22

I want to prevent multiple form submissions using angular.js. The question is related to this question.

When the user clicks on a form submit button the value / labe

9条回答
  •  无人及你
    2020-12-13 22:16

    Try a $timeout (the angularjs function)

    $timeout(function(){
        elm.attr('disabled',true);
    }, 0)
    

提交回复
热议问题