使用Razor语法的AngularJS问题

时间:2015-05-27 11:42:50

标签: asp.net-mvc angularjs razor

我们如何使用下面的附加公式将一个文本框模型绑定到另一个文本框但是这不起作用..

@Html.TextBoxFor(model => model.Records, new 
                                        { 
                                          @class = "form-control",
                                         ng_model = Html.IdFor(m => m.MasterRecordsCharge) 
                                       })


 @Html.TextBoxFor(model => model.RecordsTotal, new 
                                              {
                                                 @class = "form-control",
                                                 ng_bind = "{{parseFloat("+Html.IdFor(m => m.MasterRecordsCharge)+") + 100}}" 
                                              })

OR

 <input type="text" ng-model="record">
 <input type="text" ng-bind="{{parseFloat(record) + 100}}">

0 个答案:

没有答案