0
3つ目の入力フィールドに2つの入力フィールドの値を追加して表示する必要があります。数字で入力するのは簡単ですが、残念ながらこれはIEでは機能しません。それはクロムでうまく動作します。私はIEでそれをやって、両方をサポートする方法を教えてください。angularjs:2つの入力を合計して3番目の入力に表示
<tr>
<th>Business</th>
<th><input type="number" class="col-sm-12" ng-model="input1"/></th>
<th><input type="number" class="col-sm-12" ng-model="input2"/></th>
<th style="background-color:beige"><input type="number" class="col-sm-12" value="{{input1+input2}}" readonly /></th>
<th><input type="number" class="col-sm-12" ng-model="input3"/></th>
</tr>
で動作します。これはChromeでもうまくいきますか? – Aneez
私のクロームブラウザでも動作します – Leguest