0
我有一個文本框遞增或遞減被重複循環的文本框的值:如何使用角JS
<div class="container">
<div ng-repeat="x in checkoutData">
<img src="img/minus.jpg" ng-click="Decrement();">
<input value="1" type="text" ng-model="items[$index]"/>
<img src="img/plus.jpg" ng-click="Increment($index);">
</div>
</div>
我的角碼是:
$scope.Increment = function(index) {
alert($scope.items[index]); // TypeError: Cannot read property '0' of undefined
};
因爲文本和圖像重複着。如果我擊中特定的圖像只有特定的文本框的值必須增加也反過來遞減。我如何使用Angular JS做到這一點?
你應該爲每個輸入定義單獨'model'。像'
嘗試改變你的ng模型,比如x.value。現在所有的輸入都綁定到相同的ng模型值 – Vivz
@Vivz值將保持相同1爲所有文本框.. –