AngularJS 将值复制到另一个输入
AngularJS copy value to another input on fly
我需要将 1 个模型绑定到 2 个输入。
第一个输入应该是可见的,我用它来设置模型的值
<input type="text" ng-model="ttl" class="form-control input-sm"/>
第二个输入已隐藏,我将其用于表单。我需要在这里保留模型的实际值
<input type="text" name="ttl" value="{{ttl}}" class="form-control input-sm"/>
问题是隐藏输入总是空的....如何解决?谢谢
简单地在两者上使用 ng-model:-
<input type="text" ng-model="ttl" class="form-control input-sm"/>
<input type="text" name="ttl" ng-model="ttl" class="form-control input-sm"/>
这似乎对我有用(下面只有第二个输入框):
<input type="text" name="ttl" ng-value="ttl" class="form-control input-sm"/>
或
<input type="text" name="ttl" ng-model="ttl" class="form-control input-sm"/>
我知道你会自己隐藏那个输入?
JSFiddle:
我需要将 1 个模型绑定到 2 个输入。 第一个输入应该是可见的,我用它来设置模型的值
<input type="text" ng-model="ttl" class="form-control input-sm"/>
第二个输入已隐藏,我将其用于表单。我需要在这里保留模型的实际值
<input type="text" name="ttl" value="{{ttl}}" class="form-control input-sm"/>
问题是隐藏输入总是空的....如何解决?谢谢
简单地在两者上使用 ng-model:-
<input type="text" ng-model="ttl" class="form-control input-sm"/>
<input type="text" name="ttl" ng-model="ttl" class="form-control input-sm"/>
这似乎对我有用(下面只有第二个输入框):
<input type="text" name="ttl" ng-value="ttl" class="form-control input-sm"/>
或
<input type="text" name="ttl" ng-model="ttl" class="form-control input-sm"/>
我知道你会自己隐藏那个输入?
JSFiddle: