gpt4 book ai didi

reactjs - ReactJS 如何设置默认选中复选框?

转载 作者:行者123 更新时间:2023-12-03 12:52:41 27 4
gpt4 key购买 nike

在 React 中为复选框分配默认值 checked="checked" 后,我无法更新复选框状态。

var rCheck = React.createElement('input',
{
type: 'checkbox',
checked: 'checked',
value: true
}, 'Check here');

分配checked="checked"后,我无法通过单击取消选中/选中来交互复选框状态。

最佳答案

要与该框交互,您需要在更改复选框后更新其状态。要获得默认设置,您可以使用 defaultChecked

一个例子:

<input type="checkbox" defaultChecked={this.state.chkbox} onChange={this.handleChangeChk} />

关于reactjs - ReactJS 如何设置默认选中复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32174317/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com