或者,我可以在DOM中明确设置处理程序,即< paper-ripple on-core-transitionend =“enter()”>< / paper-ripple> ;,但是如何在AngularJS中定义此函数?
angular.module('HelloApp',[]) .directive('customDir',function () { return { restrict: 'A',link: function(scope,element,attrs) { element.bind("click",function() { alert("you clicked me"); }) } } })
在您的情况下,您可以简单地将定义的事件绑定到元素