admin管理员组文章数量:1405393
I have a simple section where user can click a button, now I want on click to change (toggle) the color of the text using react hooks here is what I have so far.'
const [textColor, setTextColor] = useState('black');
const handleChnageTextColor = (e) => {
setTextColor('#CCCCCC');
}
return(
<>
<label onClick={handleChnageTextColor} className="switch">
<input type="checkbox" />
<span className="slider round" />
</label>
<small style={{ color:textColor}} className="switch-container_text">advanced view</small>
</>
)
so the initial color is black on click I am changing color to #CCCCCC
now when I click again the color is not changing.
What do I need to add to make this toggle between these two colors on click?
I have a simple section where user can click a button, now I want on click to change (toggle) the color of the text using react hooks here is what I have so far.'
const [textColor, setTextColor] = useState('black');
const handleChnageTextColor = (e) => {
setTextColor('#CCCCCC');
}
return(
<>
<label onClick={handleChnageTextColor} className="switch">
<input type="checkbox" />
<span className="slider round" />
</label>
<small style={{ color:textColor}} className="switch-container_text">advanced view</small>
</>
)
so the initial color is black on click I am changing color to #CCCCCC
now when I click again the color is not changing.
What do I need to add to make this toggle between these two colors on click?
Share Improve this question edited Jul 27, 2020 at 14:39 The Dead Man asked Jul 27, 2020 at 10:16 The Dead ManThe Dead Man 5,57633 gold badges125 silver badges226 bronze badges3 Answers
Reset to default 2Change your handleChangeTextColor to following:
const handleChnageTextColor = (e) => {
setTextColor(textColor === 'black' ? '#CCCCCC' : 'black');
}
You should assign the value of checkbox with some state variable and make the color of the text dependant on the checkbox value. Following will surely help you achieve the desired results.
const [textColor, setTextColor] = useState('black');
const [isBlack, setIsBlack] = useState(true);
const handleChnageTextColor = (e) => {
setIsBlack(!isBlack);
setTextColor(isBlack ? '#CCCCCC' : 'black ');
}
return(
<>
<label className="switch">
<input type="checkbox" value={isBlack} onChange={handleChnageTextColor} />
<span className="slider round" />
</label>
<small style={{ color:textColor}} className="switch-container_text">advanced view</small>
</>
)
}
You should check the element style value to decide the color to apply:
if(e.style.color === "black") '#CCCCCC' : 'black'
本文标签: javascriptChanging text color on click with react hooksStack Overflow
版权声明:本文标题:javascript - Changing text color on click with react hooks - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744216067a2595643.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论