6

私は現在 AngularJS フレームワークで遊んでいますが、問題に遭遇しました。「enter」と呼ばれるディレクティブを作成しました。と の機能をトリガーしmouseenterますmouseleave。テーブルの行要素に属性として適用しました。すべての子要素​​(すべての列など) に対してトリガーされるようになりましたが、マウスをテーブルの行の上に移動したときにのみトリガーする必要があります。

これは私のディレクティブがどのように見えるかです:

myapp.directive('enter', function(){
    return {
        restrict: 'A', // link to attribute... default is A
        link: function (scope, element){
            element.bind('mouseenter',function() {
                console.log('MOUSE ENTER: ' + scope.movie.title);
            });
            element.bind('mouseleave',function() {
                console.log('LEAVE');
            });
        }
    }
});

以下に例を示します: http://jsfiddle.net/dJGfd/1/

ログ メッセージを表示するには、Javascript コンソールを開く必要があります。

AngularJS で必要な機能を実現する最善の方法は何ですか? 適切な AngularJS ソリューションがあれば、jQuery を使用しないことを好みます。

4

1 に答える 1

6

これを試すことができます:

myapp.directive('enter', function () {
    return {
        restrict: 'A',
        controller: function ($scope, $timeout) {
            // do we have started timeout
            var timeoutStarted = false;

            // pending value of mouse state
            var pendingMouseState = false;

            $scope.changeMouseState = function (newMouseState) {
                // if pending value equals to new value then do nothing
                if (pendingMouseState == newMouseState) {
                    return;
                }
                // otherwise store new value
                pendingMouseState = newMouseState;
                // and start timeout
                startTimer();
            };

            function startTimer() {     
                // if timeout started then do nothing
                if (timeoutStarted) {
                    return;
                }

                // start timeout 10 ms
                $timeout(function () {
                    // reset value of timeoutStarted flag
                    timeoutStarted = false;
                    // apply new value
                    $scope.mouseOver = pendingMouseState;
                }, 10, true);
            }
        },
        link: function (scope, element) {
            //**********************************************
            //  bind to "mouseenter" and "mouseleave" events
            //**********************************************
            element.bind('mouseover', function (event) {
                scope.changeMouseState(true);
            });

            element.bind('mouseleave', function (event) {
                scope.changeMouseState(false);
            });

            //**********************************************
            //  watch value of "mouseOver" variable
            // or you create bindings in markup
            //**********************************************
            scope.$watch("mouseOver", function (value) {
                console.log(value);
            });
        }
    }
});

http://jsfiddle.net/22WgG/で同じこと

また代わりに

element.bind("mouseenter", ...);

element.bind("mouseleave", ...);

指定できます

<tr enter ng-mouseenter="changeMouseState(true)" ng-mouseleave="changeMouseState(false)">...</tr>

http://jsfiddle.net/hwnW3/を参照

于 2013-03-10T23:20:08.233 に答える