屬性我有以下代碼:如何獲得一個元素與AngularJS
<div class="col-md-10" data-ng-controller="type-controller">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-success" ng-model="typeId" data-btn-radio="'1'">
Option 1
</label>
<label class="btn btn-success" ng-model="typeId" data-btn-radio="'2'">
Option 2
</label>
</div>
<input data-ng-model="typeId" name="typeId" type="hidden" data-start="2" />
</div>
我type-controller
是空的,所以我忽略它 - 但我想從最後輸入獲取屬性data-start
的價值裏面的type-controller
。
我沒有使用jQuery。
可能重複[AngularJS - 獲取元素屬性值(http://stackoverflow.com/questions/ 24673418/angularjs-get-element-attributes-values) – isherwood 2014-09-29 17:11:46
我不使用ng-click ...還有其他選擇嗎? – user3900456 2014-09-29 17:14:23
你想要做什麼?正如下面所說的,你不應該在控制器中弄亂DOM。你應該爲此使用指令。 – Vadim 2014-09-29 17:24:19