这是我尝试过的代码。 我尝试使用 AngularJS 代码和 HTML 代码添加占位符,但它在这两种情况下都不起作用。 请帮助我或建议我在这种情况下如何做
<select ui-select2="select2Options"
style="width:100%"
ng-model="SelectedProcessandIngredients"
data-placeholder="Select or Add Process/Ingredient"
ng-options="c.name group by c.status for c in colors"
ng-change="selectedinnerLoop()" >
</select>
Angular js 代码:
$scope.select2Options = {
placeholder : "Select or Add Process/Ingredient",
formatResult : processList,
formatSelection : processList,
escapeMarkup : function (m) {
return m;
}
};
在选择标签中添加一个空的选项标签,将显示占位符。另外,使用 ng-repeat 而不是 ng-options。Select2 与 ng 选项不兼容。
<select ui-select2 ng-model="select2" data-placeholder="Pick a number">
<!-- empty option gets placeholder working -->
<option value=""></option>
<!-- ng-repeat to populate dynamic options -->
<option ng-repeat="number in range" value="{{number.value}}">{{number.text}}</option>
</select>