0
我不知道如何使用ng-click從我的指令中調用函數。如何從我的angular-js指令中單擊一個函數?
這是我的HTML的例子:
<div>
<directive-name data="exemple">
<button class=btn btn-primary type="submit" ng-click="search()">
</directive-name>
</div>
這是我的JavaScript的例子:提前
...
.directive('directiveName', ['exempleService', function(exempleService) {
function link(scope, element, attrs) {
scope.search = function() {
console.log("this is working")
};
};
return {
link: link,
restrict: 'E',
scope: {data:'=',
search:'&'}
}
}]);
謝謝! :)
非常感謝您的快速和工作答案! :) –