zl程序教程

您现在的位置是:首页 >  前端

当前栏目

React-- ref

React -- ref
2023-09-27 14:26:50 时间

学习资源推荐

ref

import React  from 'react';
class App extends React.Component {
  constructor(props) {
    super(props);
    this.myref=React.createRef();
  }
  
  componentDidMount(){
   this.myref.current.style.backgroundColor="#000"
  }
  render() {
    return (
      <input ref={this.myref} defaultValue="我是输入框" style={{color:'white'}}/>
    );
  }
}

export default App;