1. 程式人生 > >angularJS之link函式對元素事件繫結或屬性的操作

angularJS之link函式對元素事件繫結或屬性的操作

var myApp=angular.module('myApp',[]); myApp.directive('hello',function(){ return { restrict:'AE', template:'<div>hello angularJS</div>', replace:true, link:function(scope,element,attrs,controller){ console.log("hello angularjs"); element.on('mouseenter'
,function(){ console.log("link函式處理元素事件繫結或屬性的操作"); }); element.on('mouseout',function(){ console.log("滑鼠離開事件"); }); } } });