是否可以更改按钮background-color
功能的onClick
?
离。点击background-color: black
,再点击background-color: white
我尝试了类似this.style
的内容,没有结果。
我设法让覆盖层工作并在其中插入所需的数据。 但是没有找到任何可以帮助我的帖子。 我正在使用react-bootstrap。 这是我的代码。
const metaDataOverlay = (
<div>
<style type="text/css">{`
.btn-overlay {
background-color: white;
margin-right: -15px;
margin-left: -15px;
padding-bottom: -20px;
padding: 0;
}
`}</style>
<ButtonToolbar>
<ButtonGroup>
<OverlayTrigger trigger={['hover', 'focus']} placement="left" overlay={popoverHoverFocus}>
<Button bsStyle="overlay" onClick={ clicked } onKeyPress={ keypress }>
<div className={bemBlocks.item().mix(bemBlocks.container("item"))} data-qa="hit">
<a href={url} onClick={(e)=>{e.preventDefault(); console.log("123")}}>
<div>
<img data-qa="poster" className={bemBlocks.item("poster")} src={result._source.poster} width="240" height="240"/>
</div>
</a>
</div>
</Button>
</OverlayTrigger>
</ButtonGroup>
</ButtonToolbar>
</div>
)
答案 0 :(得分:20)
您可以尝试使用状态来存储颜色。也许这会让你知道如何解决问题:
class Test extends React.Component {
constructor(){
super();
this.state = {
black: true
}
}
changeColor(){
this.setState({black: !this.state.black})
}
render(){
let btn_class = this.state.black ? "blackButton" : "whiteButton";
return (
<button className={btn_class} onClick={this.changeColor.bind(this)}>
Button
</button>
)
}
}
React.render(<Test />, document.getElementById('container'));
答案 1 :(得分:14)
您还可以访问事件的事件和当前目标
handleClick = (event) => {
// accessible
event.target.style
event.target.classList //to change style via css
}
答案 2 :(得分:1)
这是另一种解决方案
changeStyles = () => {
let element = document.getElementById('button')
ReactDOM.findDOMNode(element).style.backgroundColor = this.state.isClicked?'black' : 'white'
}
通过这种方式,您只能更改所需的样式属性,以防止CSS中出现重复项。
答案 3 :(得分:0)
这是您访问的方式
handleClick=(e)=>{
console.log("this is working fine");
e.preventDefault();
e.target.style.color = 'black'
console.log(e.target);
}
如果您希望更加动态,可以使用样式余言use setState函数的一些默认值来初始化状态
答案 4 :(得分:0)
将此添加到您的工具提示
<Tooltip cursor={{ fill: 'transparent' }} />
答案 5 :(得分:0)
这是另一种解决方案:
import React, { Component } from 'react';
import './App.css';
class App extends Component {
constructor(props) {
super(props);
this.state = {
BackgroundColor: "BLACK"};
};
render(){
return (
<div className='app'>
<button className={this.state.BackgroundColor === "BLACK" ? "Black" : "nothing"}
onClick={() => {this.setState({BackgroundColor: "WHITE"})}}>CHANGE TO BLACK</button>
<button className={this.state.BackgroundColor === "WHITE" ? "White" : "nothing"}
onClick={() => {this.setState({BackgroundColor: "BLACK"})}}>CHANGE TO WHITE</button>
</div>
);
}
}
export default App;
此代码将帮助您隐藏前黑色按钮并更改为白色背景的新按钮。此功能也适用于新的白色按钮。如果你只是想改变按钮的背景颜色而不重复情况,你也可以尝试在渲染中改变条件状态
render(){
return (
<div className='app'>
<button className={this.state.BackgroundColor === "BLACK" ? "Black" : "White"}
onClick={() => {this.setState({BackgroundColor: "WHITE"})}}>CHANGE TO BLACK</button>
</div>
);
}
}
这是CSS:
*{
margin: 0;
padding: 0;
}
.app{
display: flex;
justify-content: center;
align-items: center;
}
.Black{
background-color: black;
color: white;
}
.White{
background-color: white;
color: black;
}
.nothing{
display: none;
}