AngularJS ng-repeat in Bootstrap multiselect dropdown
问题 I used Bootstrap Multiselect Dropdown http://davidstutz.github.io/bootstrap-multiselect/ & embed into the sub-template of AngularJS & let it run with the following function: $scope.$on('$viewContentLoaded', function () { $(document).ready(function() { $('#example27').multiselect({ includeSelectAllOption: true }); }); }); I continued using ng-repeat to print the inside options of this input select: <select id="example27" multiple="multiple"> <option ng-repeat="list in lists" value="{{list.id}}