如何在角指令访问DOM元素 [英] How to access a dom element in a Angular directive

查看:104
本文介绍了如何在角指令访问DOM元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想一个keyup事件附加到指令的角度我的项目。这里是指令:

I am trying to attach a keyup event to a directive an my Angular project. Here is the directive:

angular.module('clinicalApp').directive('chatContainer', function() {
  return {
    scope: {
      encounter: '=',
      count: '='
    }
    templateUrl: 'views/chat.container.html',

    link: function(scope, elem, attrs) {
      scope.count = 500;
    }
  };
});

和这里是从模板的HTML:

and here is the html from the template:

<div class="span4 chat-container">
  <div class="chat-body">
    <form accept-charset="UTF-8" action="#" method="POST">
      <div class="text-area-container">
        <textarea id="chatBox" class="chat-box" rows="2"></textarea>
      </div>
      <div class="button-container btn-group btn-group-chat">
        <input  id="comment" class="btn btn-primary btn-small btn-comment disabled"  value="Comment" ng-click="addMessage()"/>
      </div>
    </form>
    </div>
  </div>
</div>

我要访问的客舱我的链接功能和keyup事件附加到它。我知道我可以用jQuery得到它,但是这不能成为角的方式。什么是抓住从DOM该元素的正确方法?

I want to access the chatbox in my link function and attach the keyup event to it. I know I can get it with jQuery, but that cannot be the Angular way. What is the proper way to grab that element from the dom?

推荐答案

您可以轻松地角 <$ C做$ C>元素 找到()方法:

You can easily do it with Angular' element' find() method:

 var chatbox = elem.find("textarea");  // Finding
 chatbox.bind("keyup",function(){      // Binding
     console.log("KEYUP!")
 })

活生生的例子: http://jsfiddle.net/cherniv/S7XdK/

这篇关于如何在角指令访问DOM元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆