跳到主要内容

<html.label>

<html.label> 组件允许您渲染表单字段标签。

概述

要显示表单字段的标签,请渲染 <html.label> 组件,并通过 for 属性将其链接到该字段。

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

const Foo = () => {
const id = useId();
return (
<>
<html.label for={id} />
<html.input id={id} />
</>
);
);

属性