我想通过select2在下拉菜单中设置标记。就像我想放自定义电子邮件或其他任何东西一样,它应该显示为标记。我正在分享jsfiddle。
<div ng-controller="MyCtrl">
<label>Please select items:</label>
<select ui-select2 multiple ng-model='selectedDaltons'>
<option ng-repeat="d in daltons" ng-bind="d" value="{{ d }}"></option>
</select>
</div>
var myApp = angular.module('myApp', ['ui.select2']);
function MyCtrl($scope) {
$scope.daltons = [
'Joe',
'William' ,
'Jack' ,
'Averell' ,
'Ma'
];
$scope.selectedDaltons = 'joe'; // Averell is preselected
};
http://jsfiddle.net/hWXBv/179/
在ui select中,您可以使用"标记"功能,甚至可以设置标记标签。查看此链接
https://github.com/angular-ui/ui-select/wiki/ui-select
这个庞克:
http://plnkr.co/edit/m1SQXUxftBLQtitng1f0