默认情况下,如果在 a 中没有选择任何内容,则 angular 使用空值<select>
。我怎样才能把它改成这样的文字Please select one
?
问问题
7783 次
2 回答
18
您没有提供任何代码,因此我无法提供与您的代码相关的示例,但请尝试添加选项元素,例如
<select ng-model="item" ng-options="item.category for item in items"
ng-change="doSomething()">
<option value="">Please select one</option>
</select>
于 2015-02-15T01:29:58.190 回答
2
通过ng-selected
属性:
<select>
<option>Hello!</option>
<option ng-selected="selected">Please select one</option>
<option>Another option</option>
</select>
查看参考:https ://docs.angularjs.org/api/ng/directive/ngSelected
于 2015-02-15T01:34:50.153 回答