gpt4 book ai didi

javascript - 单击时激活按钮切换类

转载 作者:行者123 更新时间:2023-11-30 20:10:55 25 4
gpt4 key购买 nike

我有这个按钮

<ChartButton className={this.state.GPUClicked === 0 ? ' toggled' : ''}onClick={() => this.handleGPUChart(0, 'GPU 1')}>GPU 1</ChartButton>

点击时触发

    handleGPUChart = (num, title) => {
this.setState({
GPU1: num,
GPUTitle: title,
GPUClicked: num
})
}

这是这个按钮的 CSS

    export const ChartButton = styled.button`
background-color: #5BB081;
border: none;
outline: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
white-space: nowrap;
cursor: pointer;
.toggled {
background-color: #636863;
font-size: 15px;
}
`

我在这里错过了什么?我希望按钮在单击时切换为切换,我认为我在 ChartButton 组件中作为 className 的内容是有意义的。我正在为这个撕扯我的头发......提前非常感谢你。

最佳答案

很确定你只需要在你的额外类(class)之前添加一个 &:

export const ChartButton = styled.button`
background-color: #5BB081;
border: none;
outline: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
white-space: nowrap;
cursor: pointer;
&.toggled {
background-color: #636863;
font-size: 15px;
}
`

关于javascript - 单击时激活按钮切换类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52430716/

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