react input 设置默认值

1、text类型

<input type="text" value={默认值} />  ,这种写法可以显示默认值,但不能对输入框进行编辑

正确写法: <input type="text" defaultValue={默认值} /> 

 
2、checkbox类型
<input type="checkbox" checked />默认勾选,不能更改状态
正确写法: <input type="checkbox" defaultChecked={true} />
原文地址:https://www.cnblogs.com/suiyueshentou/p/5818176.html