我试图将ng-click
添加到按钮中。我的HTML:
<button class="btn">clicky</button>
指令:
angular.module('app').directive('btn', function() {
return {
restrict: 'C',
replace: true,
scope: true,
transclude: true,
template: '<button ng-click="onClick()"></button>'
};
});
从元素中删除clicky
。
Transclude没有帮助。谢谢你的回答。
答案 0 :(得分:5)
在模板中添加ng-transclude
。
template: '<button ng-click="onClick()" ng-transclude></button>'