我想创建一个简单的指令,它有一个按钮,显示光标是否放在它上面。但是,每次我将这个新指令包含到我的index.html中时,我都会收到此错误。
以下是以下错误:
这是我的模板代码:
<div>
<button ng-show="ishovering">DELETE</button>
</div>
这是我的指令代码:
app.directive('deleteArea',function(){
return {
scope: {},
require: 'ng-show',
restrict: "AE",
replace: true,
templateUrl: "./templates/delete.html",
link: function(scope,elem,attrs){
elem.bind('mouseover',function(){
elem.css('cursor','pointer');
scope.$apply(function(){
scope.ishovering = true;
});
});
}
};
});
感谢任何帮助,谢谢。