简体   繁体   中英

React checkbox doesn't toggle on onchange

My react checkbox component will not uncheck when its clicked.

Pic of my code

Remove bind method from constructor because you have already make arrow function so there is no need to bind and try this.

<div className={`checkbox ${this.props.color}`} onclick={this.onChange}>
    <div>
         {this.state.checked && <svg write conditional component here../>} 
    </div>
</div>

Hopefully this will work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM