htmlは以下です
select(data-placeholder="Choose State", ng-model="districtCourtState")#stateselected
option( ng-repeat='state in StatesofIndia', value= "{{state}}") {{state}}
上記のコードはその一部でng-controller='inputForm_Controller'
あり、以下に示されています。
$(document).ready(function(){
$(".chosen-select").chosen();
$("#stateselected").chosen().change( function() {
alert($scope.districtCourtState);
});
});
上記は、最初は正しい Chosen Option Alert を示しますが、2 回目以降は StatesofIndia = ['a', 'b', 'c', 'd']
$scope.districtCourtState
つまり、「a」が選択されている場合alert
は「b」が指定されている場合など、値として選択+ 1が一貫して与えられます。