angular ng-click防止重复提交实例
程序员文章站
2022-07-05 20:08:02
方法一:点击后,让button的状态变为disable
js指令:
.directive('clickanddisable', function() {...
方法一:点击后,让button的状态变为disable
js指令:
.directive('clickanddisable', function() { return { scope: { clickanddisable: '&' }, link: function(scope, ielement, iattrs) { ielement.bind('click', function() { ielement.prop('disabled',true); scope.clickanddisable().finally(function() { ielement.prop('disabled',false); }) }); } }; })
html:
复制代码 代码如下:
<button type="button" class="btn btn-info btn-bordered waves-effect w-md waves-light" click-and-disable="next()">下一步</button> //把 ng-click 改为指令click-and-disable
方法二:在app.config里面,重写ng-click事件,设置一定事件内不能重复点击
$provide.decorator('ngclickdirective',['$delegate','$timeout', function ($delegate,$timeout) { //记得在config里注入$provide var original = $delegate[0].compile; var delay = 500;//设置间隔时间 $delegate[0].compile = function (element, attrs, transclude) { var disabled = false; function onclick(evt) { if (disabled) { evt.preventdefault(); evt.stopimmediatepropagation(); } else { disabled = true; $timeout(function () { disabled = false; }, delay, false); } } // scope.$on('$destroy', function () { ielement.off('click', onclick); }); element.on('click', onclick); return original(element, attrs, transclude); }; return $delegate; }]);
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 小发现之浅谈location.search与location.hash的问题
下一篇: 第一次听说过