绑定输入并选择一个ng模型

时间:2014-11-12 10:24:37

标签: javascript angularjs angular-ngmodel

绑定模型有输入和选择的问题。从下拉列表中选择模型时,输入值会更改。但如果输入的输入值等于list的某些值,则下拉列表不会改变。

Example on Plunker

<select 
  ng-model="Choice.SelectedOption"                 
  ng-options="choice.ID as choice.Name for choice in Choice.Options">
</select>

{{Choice.SelectedOption.ID}}
input model <input type="text" ng-model="Choice.SelectedOption">
input value {{ Choice.SelectedOption }}

从下拉列表中更改模型,然后尝试将模型从输入更改为1,2或3(它的用户ID)

1 个答案:

答案 0 :(得分:1)

<input type="text">更改为<input type="number">修复它。

http://plnkr.co/edit/FQqVGZz51SCJunWPZwfd?p=preview