我可以在{{data |货币}}?

时间:2014-07-03 18:33:05

标签: angularjs

我有以下代码,并希望将ng-change设置为使用{{}}设置的模型。我不想要文本框,但代码适用于此。我能这样做吗?

<td ng-repeat="period in vm.Grid">
    <div ng-model="period.Value" contenteditable="true" ng-change="vm.updateValue(period)">
        {{ period.Value | currency  }}
        //if I use on a text box (see below), the ng-change works
        <input ng-model ="period.Value" ng-change="vm.updateManualValue(period)"/>
    </div>

0 个答案:

没有答案