<tr ng-if="isCheckAll==true">
<th valign="top">{{ 'updateorder.NEWORDER' | translate}} :</th>
<td><input type="text" style="width:200px" ng-model="newOrderId"
class="ipt-sty02 fs-12 ipt-click js_ipt_click mgr-20" />
</td>
</tr>
界面绑定了一个普通的不能在普通的input输入参数。
但是js死活取不到值。
后面发现因为该input所在的tr绑定了ng-if
ng-model 在 ng-if 中无效
ng-if里面会生成一个子域,想要ng-model生效,需要在$scope创建一个子对象,才行,如$scope.obj,再将ng-model绑定到obj
或者 将 ng-if 改成 ng-show !!!