Angular:长按时增加反击

时间:2015-06-17 09:19:51

标签: javascript angularjs

我有一个指令,其中包含两个箭头,用于递增/递减数字。

当用户使用长按时,我想连续增加/减少数字,我该怎么做?

enter image description here

指令:

'use strict';
(function (module) {
    var vlIncrementor = function () {

        return {
            templateUrl: 'assets/angular-client/app/html/common/incrementor/vlIncrementor.html',
            scope: { model: '=ngModel' },
            controller: function ( $scope ) {
                $scope.increment = function (  ) {
                    $scope.model++;
                };

                $scope.decrement = function () {
                    $scope.model--;
                };
            }
        };
    };
    module.directive('vlIncrementor', vlIncrementor);
}(angular.module('html.common')));

HTML:

<div class="vl-increment">
    <i class="fa fa-caret-left fa-lg center" ng-class="{disabled: model === 0}" ng-click="decrement()"></i>
    <input type="text" ng-model="model"/>
    <i class="fa fa-caret-right fa-lg center"  ng-click="increment()"></i>
</div>

我尝试使用此代码添加链接函数,但它不起作用(它像常规点击一样增加一个):

link: function ( scope , el) {
                $(el ).find('.fa-caret-left').mouseup(function(){
                    clearTimeout(pressTimer)
                    // Clear timeout
                    return false;
                }).mousedown(function(){
                    // Set timeout
                    pressTimer = window.setTimeout(function() {
                        scope.$apply( function () {
                            scope.model--; 
                        });
                    },1000);
                    return false;
                });
            }

1 个答案:

答案 0 :(得分:0)

类似的问题已经回答here

可能的解决方案是使用ng-mousedownng-mouseup并使用$interval来控制计数器。