我制作了一个自定义指令:
js part:
angular.module("myDirectives", []).directive("ngShowbox", function(){
return {
restrict: "E",
scope: {
title: "="
},
template: "<a href='#' ng-click='show($event)'>{{title}}</a>",
controller: function($scope, $element){
$scope.show = function(event){
// do something...
}
}
}
});
html部分:
<ng-showbox title="whatToPutHere??"></ng-showbox>
我想传递title属性中的一些文字, 然后我的模板将显示文本。 我该怎么做?
非常感谢:)