简体   繁体   English

用于获取元素ID的AngularJS指令

[英]AngularJS Directive for get element ID

I need to get the Element ID from AngularJs. 我需要从AngularJs获取Element ID。
I have tried this but it didn't work. 我试过这个但是没用。

angular.module('AngStarter').directive('oblInLineEditor', function() {
    return function(scope, element, attr) {
         console.log("value = " + scope.$eval(attr.id));
    }
});

you don't need scope.eval here. 你这里不需要scope.eval。

angular.module('AngStarter').directive('oblInLineEditor', function() {
    return function(scope, element, attr) {
         console.log("value = " + attr.id);
    }
});

see this example: http://jsfiddle.net/kevalbhatt18/bu6jxzan/ 看到这个例子: http//jsfiddle.net/kevalbhatt18/bu6jxzan/

 var myApp = angular.module('AngStarter', []); myApp.directive("oblInLineEditor", function(){ return { restrict: "E", link: function(scope, elem, attrs) { console.log(elem[0].id); console.log(attrs.id) } } }); 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM