3
我使用https://github.com/localytics/angular-chosen指令來創建簡單的多選控件。Angularjs與jquery.chosen - ngModel不會更新
這應該很簡單,但是select上的ngModel不會被更新。
這裏是角控制器代碼:
var app = angular.module('Simple', ['localytics.directives'])
.controller('SimpleCtrl', function ($scope, $http) {
$scope.states = ['one', 'two', 'three', 'four']
$scope.state = ['one'];
});
HTML:
<select multiple
chosen
ng-model="state"
ng-options="s for s in states">
<option value=""></option>
</select>
<p ng-repeat="s in state">{{s}}</p>
一切正常,除了 '國家' 沒有更新。我正在使用angularjs 1.2.10。 我會很感激任何建議。謝謝。
這裏的jsfiddle與提出相同的問題http://jsfiddle.net/mousenine/MQzXq/12/
偉大的:)這對我有用 – PatricioS