21

我正在尝试更改div颜色值更改时的背景。这是我接收颜色值的函数:

ChangeColor(oColor) {
    this.props.ChangeColor(oColor);
    console.log("Refs: ", this.refs.colorPicker.className);
  },

这是css类

.colorPicker {
    padding-right: 25px;
    background: #000;
    display: inline;
    margin-right: 5px;
  }

这是我的 div 元素,其背景需要在运行时更新。

<div ref='colorPicker' className={this.GetClass("colorPicker")}  />

我不确定 refs synatx 所以请帮助解决这个问题。谢谢。

4

3 回答 3

26

我找到了。这是答案:

  ChangeColor(oColor) {
    this.props.ChangeColor(oColor);
    this.refs.colorPicker.style.background = oColor; //this is how background will be updated

  },
于 2016-09-20T15:19:13.223 回答
5

如果有人正在寻找钩子版本

export const YourComponent = (props) => {
  const divRef: = useRef(null);
  
  yourTriggerEvent = () => {
    divRef.current.style.background = 'red';
  }
  
  return (
    <div ref={divRef}>
    </div>
  );
}

于 2021-05-11T19:18:01.717 回答
5

此外,您可以使用 ref 元素更改 div 的颜色。例如:

const myReference = this.colorPicker.current // The DOM element
myReference.style.backgroundColor = "red"; // The style you want to apply
于 2020-03-04T06:11:11.863 回答