在Angular中选择段落文本

时间:2014-08-02 00:08:38

标签: angularjs

我在Jquery中看到了典型的('myContainer').select();。但是,有没有办法用Angular在.container div中选择文本?我在API参考中找不到任何内容,每个搜索都引用了select元素。

1 个答案:

答案 0 :(得分:0)

Angular在其jQLite 1中确实有.text()

您可以在以下指令中调用它:

angular.module('demo', [])
.directive('someDirective', function(){
  return {
    restrict: 'E',
    templateUrl: 'template.html',
    transclude: true,
    scope: true,
    link: function(scope, element, attrs) {
      scope.content = {
        changeText: function() {
          button = element.find('button');
          button.text('Nice new button')
          }
        }
      }
    }
  }
)