optgroup 不可见?
为什么这里的optgroup看不到?
显示所有选项,但不显示组名称
$('<select></select>').appendTo('body').append('<option value="0">test</option>')
.append($('<optgroup>group</optgroup>')
.append('<option value="1">group test</option>'));
Why is the optgroup here not viewable?
All options are shown, but not the group name
$('<select></select>').appendTo('body').append('<option value="0">test</option>')
.append($('<optgroup>group</optgroup>')
.append('<option value="1">group test</option>'));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
组名称通过
label
属性设置 (HTML4 规范),而不是其内容(只有option
元素可以是optgroup
元素的子元素)。演示
The group name is set via the
label
attribute (HTML4 specification), not by its content (onlyoption
elements can be children ofoptgroup
elements).DEMO