我使用ng-model作为输入类型的数字,在某些操作后工作正常我想减去输入中的原始值并在模型中显示我想在html本身中做的新值那么是否可以在ng-model中进行。我也将使用相同的模型进行输入。
<label class="item item-input InputFormFull" ng-if="vm.product.selectedtype === 'piece'">
<span class="input-label"> {{'loadcount_message' | translate}} *</span>
<input stopccp decimalpoint ng-model="vm.product.count" maxlength="8" placeholder="0" type="number" ng-change="vm.onTotalCost()" oninput="this.value = this.value.replace(/[^0-9]/g, ''); this.value = this.value.replace(/(\..*)\./g, 0);" ng-click= "vm.hideScrollContent()"
/>
</label>
例如:
输入中的值为5000意味着如果另一个输入的值为500表示则应减去这些值,并且新值4500应显示在5000的位置。