gpt4 book ai didi

javascript - 如何知道 ngClick 何时在元素上触发?

转载 作者:行者123 更新时间:2023-12-02 19:15:37 26 4
gpt4 key购买 nike

我有以下元素,

<button test-directive>value</button>

我知道我可以使用ng-click指令,但是我必须从 Controller 调用一个函数。当用户单击时,我想触发示例 test-directive

中调用的指令
testModule.directive('testDirective', function(){
return {
restrict: 'A',
link: function(scope, element, attrs) { }
}
})

如何在此指令中实现 ng-click?

谢谢

最佳答案

不确定我是否明白你的想法。

这是plunker

directive('testDirective', function(){
return {
restrict: 'A',
replace:true,
template:'<button ng-click="fire()">test</button>',
controller:function($scope, $element, $attrs){
$scope.fire = function (){
console.log("fire !");
};
}
};
});

关于javascript - 如何知道 ngClick 何时在元素上触发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13175497/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com