我需要从AngularJs获取元素ID 我试过这个,但它没有用。
angular.module('AngStarter').directive('oblInLineEditor', function() {
return function(scope, element, attr) {
console.log("value = " + scope.$eval(attr.id));
}
});
答案 0 :(得分:13)
你在这里不需要scope.eval。
angular.module('AngStarter').directive('oblInLineEditor', function() {
return function(scope, element, attr) {
console.log("value = " + attr.id);
}
});
答案 1 :(得分:5)