react input 获取/失去焦点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react input 获取/失去焦点相关的知识,希望对你有一定的参考价值。
<div className={ this.state.focus ? "dis_bottom_left_onfocus" : "dis_bottom_left" } ref="bottom_left">
<input
type="text"
className="dis_bottom_input"
ref="bottom_input"
placeholder={this.props.mainName || "说点什么吧"}
onBlur={ ::this.inputOnBlur }
onFocus={ ::this.inputOnFocus } />
</div>
//input 获取焦点 width: 100%
inputOnFocus(){
this.setState({ focus: true });
}
//input 失去焦点
inputOnBlur(){
this.setState({ focus: false });
}
以上是关于react input 获取/失去焦点的主要内容,如果未能解决你的问题,请参考以下文章
jquery失去焦点与获取焦点事件blur() focus()