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);
});
});
以上给出了正确的选择选项警报,第一次,但从第二次开始,StatesofIndia = ['a', 'b', 'c', 'd']
它始终如一地给出 selection + 1 作为$scope.districtCourtState
ie 的值,如果“a”被选择alert
,“b”被给出,依此类推。