我有这段代码:
<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>
这是内置操作还是我遗漏了什么? 感谢
答案 0 :(得分:0)
根据official documentation of <option>
,您只能在其中声明<option>
和<optgroup>
个标记。来自文档的引用。
HTML选择
<select>
元素允许的内容:零个或多个
<option>
或<optgroup>
元素。