当前位置: 首页 > 工具软件 > React Style > 使用案例 >

React style变量问题

终彬郁
2023-12-01

React style变量的问题

import {Component} from 'react'
class Parent extends Component {
    constructor() {
        super()
        this.state = {
            color: 'red'
        }
    }
    changeColor = () => {
        this.setState({
            color: 'blue'
        })
    }
    render() {
        return (
            <div>
               <div style={ {color: this.state.color} } onClick={this.changeColor}>点击</div>
            </div>
        )
    }
}
 类似资料: