jsx的原理 利用react.createElement创建元素进行渲染 行内样式 {{}}:第一层js模板,第二层是对象 className:引入样式 refs 利用ref访问dom元素 做到类似于输入框清除
this.inputDom=react.createRef <input ref={this.inputDom}> hand=()=>{ this.inputDom.current.focus() }
this.inputDom=react.createRef
<input ref={this.inputDom}>
hand=()=>{ this.inputDom.current.focus() }