import React from 'react';
class FormPage extends React.Component{
constructor(){
super();
this.state={data:""}
}
render(){
return(
<div>
<div>
<form action="" method="get">
<input type="text" defaultValue={this.props.fatherValue} />
<input type="checkbox" defaultChecked="checked" />
<button>提交</button>
</form>
</div>
</div>
)
}
}
export default FormPage
react05 表单绑定值 设置defaultValue
最新推荐文章于 2023-06-15 17:55:55 发布