标签: angularjs angularjs-directive
当页面自动加载时,可以在所有元素按钮中使用apply指令。
答案 0 :(得分:0)
您应该只能创建一个button指令。
button
angular.module("foo") .directive("button", function() { return { link: function(scope, el) { // Do something with el } } });