angularjs实现星星评分 自定义指令 app.directive('myStars', function () { return { require : '?ngModel', // ?ngModel restrict : 'E', replace : true, templateUrl : 'ui/templateUrl/myStars.html', scope: {ngModel : '='}, link: function ($scope, element, attrs, ngMod…