react input 设置默认值时间:2023-03-09 08:52:25 1、text类型 <input type="text" value={默认值} /> ,这种写法可以显示默认值,但不能对输入框进行编辑 正确写法: <input type="text" defaultValue={默认值} /> 2、checkbox类型 <input type="checkbox" checked />默认勾选,不能更改状态 正确写法: <input type="checkbox" defaultChecked={true} />