跳到主要内容

<html.optgroup>

<html.optgroup> 组件允许您创建选项的分组。

概述

要显示选项组,请在 <html.select> 中渲染 <html.optgroup> 组件。

import { html } from 'react-strict-dom';

const Foo = () => (
<html.select>
<html.optgroup label="Colors">
<html.option>Red</html.option>
</html.optgroup>
</html.select>
);

属性