我有一个表单,我必须从列表中输入国家/地区才能为总计添加不同的运费。当我使用ngCart指令时,我必须使用ng-click
才能将该信息发送到指令。
问题是我有两个不同的input options
在表单的不同部分有相同的字段,我想在手动更改另一个时更新一个的值,因此显示的选项始终是两个输入都是一样的。
我附上http://jsfiddle.net/nf2z1a00/代码。提前谢谢!
答案 0 :(得分:1)
您可以在选择和使用ng-options上使用ng-model来处理选项和运输,如下所示:
<select ng-model="selectedCountry" ng-options="country.name for country in countries" ng-change="changeChipping()">
</select>
我已更新你的小提琴here
答案 1 :(得分:0)
将相同的ng-model
放在相似的选择框中:
<select ng-model="shippingCountry">
//first
</select>
<select ng-model="shippingCountry">
//second : notice the same ng-model
</select>