React 中textarea自动聚焦
<textarea
ref={(textarea)=> this.textarea = textarea}
value={this.state.content}
onChange={this.handleContentChange.bind(this)} />
componentDidMount() {
this.textarea.focus();
}
原理是获取textarea的DOM元素(通过ref),调用focus() API就可以了!
this.textarea.focus();
}
原理是获取textarea的DOM元素(通过ref),调用focus() API就可以了!