我有一个非常简单的html select字段,它使用几个optgroup来组织选项,并且按预期工作。但是,在android手机和Chrome浏览器上,optgroup标签的前面有某种单选按钮(就像各个选项一样)-“ Interesse und Information”将是optgroup。
现在,由于它们不可点击,这有点令人困惑。我一直无法找到原因或解决方案(除了不使用optgroups之外)-我是否缺少某些东西或必须忍受呢?
选择字段不使用任何CSS。
编辑:这是代码:
<select id="auswahl">
<option value="" disabled>Frage auswählen</option>
<optgroup label="Sonstiges">
<option value="q3_3">Zustimmung: Helfe gerne</option>
</optgroup>
<optgroup label="Interesse und Information">
<option value="q5">Interesse an Politik</option>
<option value="q6">Informationsquellen zu Politik</option>
</optgroup>
</select>