我有4個文本框。數量,單價,總額和增值稅。即使能夠獲得總價格,但無法獲得總額/ 100 * 5的增值稅百分比。其文字不coming.how拿到總,形成總價值無法在angularjs中找到百分比
<table>
<tr>
<td>
<asp:Label ID="Label5" Text="Qty : " runat="server"></asp:Label>
</td>
<td>
<asp:TextBox runat="server" ID="txtQty" ng-model="qty"/>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label6" Text="Unit Price : " runat="server"></asp:Label>
</td>
<td>
<asp:TextBox runat="server" ID="txtUnitPrice" ng-model="unitprice"/>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label7" Text="Total Price : " runat="server"></asp:Label>
</td>
<td>
<asp:TextBox runat="server" ID="txttotalprice" Text="{{qty*unitprice}}" ng-model="TotalPrice/>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label8" Text="VAT @ 5% : " runat="server"></asp:Label>
</td>
<td>
<asp:TextBox runat="server" ID="txtVatPrice" Text="{{TotalPrice/100 * 5}}" />
</td>
</tr>
嘗試{{(TotalPrice/100)* 5}} –
ng-model and bind Combination not working in total price。 –
'TotalPrice'究竟是什麼?我沒有看到它在任何地方定義。 –