码迷,mamicode.com
首页 > 其他好文 > 详细

解决TextInput点击输入框外面没有触发onBlur

时间:2018-02-06 13:04:06      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:post   blur   back   round   解决   span   input   inpu   with   

在大的view外面套一个触发事件

<TouchableWithoutFeedback
  style={{ flex: 1 }}
  onPress={() => {
    this.textInputName.blur();
  }}
>

...

  <TextInput
    ref= {(ref)=>this.textInputName = ref}
  />

...

</TouchableWithoutFeedback>

解决TextInput点击输入框外面没有触发onBlur

标签:post   blur   back   round   解决   span   input   inpu   with   

原文地址:https://www.cnblogs.com/cat66/p/8421591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!