美文网首页
React-Native TextInput失去焦点键盘收回

React-Native TextInput失去焦点键盘收回

作者: 向前Hell | 来源:发表于2017-07-18 15:28 被阅读0次

添加函数:_onPress()

_onPress() {
        console.log("press");
        this.refs.InputText.blur();
        this.refs.Password.blur();
    }

背景使用

<TouchableOpacity>
<TextInput ref={'InputText'}></TextInput>
<TextInput ref={'Password'}></TextInput>
</TouchableOpacity>

添加属性:

activeOpacity={1}
onPress={this._onPress.bind(this)}

GET

相关文章

网友评论

      本文标题:React-Native TextInput失去焦点键盘收回

      本文链接:https://www.haomeiwen.com/subject/ktwckxtx.html