-1
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.mylist = ["rag", "VJ", "DK", "Lol", "Mangal"];
});
app.directive("myDirective", function($compile){
return {
template : "<div>SWESH</div>",
restrict: 'EA',
link: function (scope, element, attrs) {
var newel = $compile('<select id="customerDD" ng-options="item for item in mylist"></select>')(scope);
element.append(newel);
}
}
});
に追加されていない、それはチェックアウトフィドルをAngularJS - 動的な要素は、角カスタムディレクティブの動的な要素を追加しようとすると、リンク機能