我正在尝试做这样的事情:
<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%”,则:总值 = ({{total sum}} + ({{总和}} * .05))
我可以用 jQuery 来做到这一点,但我无法理解如何以“Angular”的方式来做这件事。