选择ng-repeat是覆盖内容

时间:2015-07-27 11:58:11

标签: javascript angularjs angularjs-ng-repeat ng-repeat

我有这段代码:

<select>
    <div class="arrow-up"></div>
    <option data-ng-repeat="x in y">{{x}}</option>
</select>

输出隐藏了箭头div,如:

<select class="ng-pristine ng-valid">
    <option data-ng-repeat="x in y">x1</option>
    <option data-ng-repeat="x in y">x2</option>
</select>

这是内置操作还是我遗漏了什么? 感谢

1 个答案:

答案 0 :(得分:0)

根据official documentation of <option>,您只能在其中声明<option><optgroup>个标记。来自文档的引用。

  

HTML选择<select>元素

     

允许的内容:零个或多个<option><optgroup>元素。