码迷,mamicode.com
首页 > 移动开发 > 详细

当滚动列表的时候,让input框失去焦点(移动端会收起键盘)

时间:2018-08-14 15:40:15      阅读:488      评论:0      收藏:0      [点我收藏+]

标签:put   拓展   style   color   span   efs   sea   als   NPU   

1.拓展scroll.vue事件

 1    beforeScroll:{
 2          type:Boolean,
 3          default:false
 4         }
 5 
 6 
 7   if(this.beforeScroll){//滚动列表的时候收起键盘(移动端)
 8             this.scroll.on(‘beforeScrollStart‘,()=>{
 9               this.$emit(‘beforeScroll‘)
10             })
11           }

2.在suggest.vue里声明beforeScrll:true,并$emit(beforeScroll)事件

1  beforeScroll(){
2           this.$emit(‘beforeScroll‘)
3         },

3.在搜索input框中写失去焦点事件:

1   blur(){
2             this.$refs.query.blur()
3           },

4.在search.vue父组件中调用子组件的blur方法;

1 blurInput(){
2             this.$refs.searchBox.blur()
3         },

 

当滚动列表的时候,让input框失去焦点(移动端会收起键盘)

标签:put   拓展   style   color   span   efs   sea   als   NPU   

原文地址:https://www.cnblogs.com/yangguoe/p/9474836.html

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