添加函数:_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