记录react中input失去焦点

记录react中input失去焦点

小笔记记录~~~ ○( ^皿^)っHiahiahia…

	constructor(props){
        super(props);
        this.state = {
            onBlur:false
        }
    }
	
所属省市
    // 失去焦点
    inputOnBlur=()=>{
        this.setState({
            onBlur:false
        })
    }

这样,input失去焦点后,再点击就不可以往input里输入内容了

你可能感兴趣的:(React)