0
我有一個使用ng-repeat由對象數組創建的div。在這個div中是一個很小的二級div,意在作爲刪除。當我點擊第二個div時,我想從數組中刪除該對象。如何在AngularJS中獲取div ID
HTML:
<div ng-repeat="item in items" id = "doc:{{$index}}">
<div ng-model="remove" ng-click="removefunc()" id="{{$index}}">
x
</div>
Other stuff goes here...
</div>
AngularJS:
$scope.removefunc = function() {
$scope.items.splice(ID of the div,1);
}
這是這樣做的正確方法?如果是這樣,我如何獲得div的ID?
算了....只是把它傳遞$指數工作 NG點擊=「removefunc($指數) –
BioPhysicist