私はこのようなことをしようとしています:
<form name="myForm" ng-controller="Ctrl">
Value1: <input type="checkbox" ng-number="100"> <br/>
Value2: <input type="checkbox" ng-number="250"
add 5% to the total sum of the checked boxes: <input type="checkbox" ng-percent=".05"
<br/>
total value = {{how do you do this?}}
</form>
したがって、Value1 がチェックされている場合、合計値は「100」、両方の値がチェックされている場合は「350」、または「5% を追加」もチェックされている場合は、合計値 = ({{総和}} + ({{合計}} * .05))
jQueryでこれを行うことができますが、「Angular」の方法でそれを行う方法に頭を悩ませています。