最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - AngularJS directive $document click event is firing for all instances everytime - Stack Overflow

programmeradmin2浏览0评论

I want to attach an event to the document. when document is clicked I want to remove my directive element. but it is firing for all past instances also.

Below is the code:

link: function(scope, iElement, iAttrs) {
      $document.on('click',function(){
          iElement.slideUp('fast',function(){
              $(this).remove();
          });
      });
    }

I want to attach an event to the document. when document is clicked I want to remove my directive element. but it is firing for all past instances also.

Below is the code:

link: function(scope, iElement, iAttrs) {
      $document.on('click',function(){
          iElement.slideUp('fast',function(){
              $(this).remove();
          });
      });
    }
Share Improve this question edited May 2, 2014 at 11:05 Tushar Gupta - curioustushar 57.1k24 gold badges106 silver badges109 bronze badges asked May 2, 2014 at 11:04 shaikshaik 2852 gold badges6 silver badges11 bronze badges 2
  • you will have to remove the handler in the $destroy handler – Arun P Johny Commented May 2, 2014 at 11:07
  • take a look: stackoverflow./questions/14898296/… – Ivan Chernykh Commented May 2, 2014 at 11:07
Add a ment  | 

2 Answers 2

Reset to default 8

Try to remove the handler in the destroy handelr

link: function (scope, iElement, iAttrs) {
    function handler() {
        iElement.slideUp('fast', function () {
            $(this).remove();
        });
    }

    $document.on('click', handler);
    scope.$on('$destroy', function () {
        $document.off('click', handler);
    })
}

When you add jQuery events like this, the event will stay alive even after the directive is destroyed. You have to specifically turn the event off like this:

link: function(scope, iElement, iAttrs) {
  $document.on('click',function(){
      iElement.slideUp('fast',function(){
          $(this).remove();
          $document.off('click');
      });
  });
}
发布评论

评论列表(0)

  1. 暂无评论