使用angular / bootstrap的<select>占位符不起作用
我想有一个select与angularjs中的占位符引导。 我find的解决scheme不适用于angular度
这是我的angular度标记:
<select ng-model="myModel" ng-options="p.name for p in ..." class="form-control list-selector required"> <option value='' disabled selected>Please Choose</option> </select>
如果有人有一个工作解决scheme…
谢谢 :)
您需要为您的select添加一个空的选项:
<option value="">- Please Choose -</option>
这是一个工作的例子: http : //jsfiddle.net/DianaNassar/FShdc/