0
div要素を持つディレクティブテンプレートがあります。そしてdivの内部要素を選択したいと思います。私はテンプレートの要素を見つけることを意味します。jqueryで角度要素の子項目を選択する
<div class="body">
<div class="container"></div>
</div>
angular.directive("myDir", function(){
return {
link: function(scope,element){
element.find(".container");// does not return element
}
}
});
のChkこのhttp://stackoverflow.com/questions/15881453/angularjs-accessing-dom-elements-inside-directive-template –
jqLiteの '.find()'メソッドは制限がありますタグ名付きの検索要素のみ。 – Jai