簡體   English   中英

用於獲取元素ID的AngularJS指令

[英]AngularJS Directive for get element ID

我需要從AngularJs獲取Element ID。
我試過這個但是沒用。

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

你這里不需要scope.eval。

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

看到這個例子: http//jsfiddle.net/kevalbhatt18/bu6jxzan/

  

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM