1.在混合开发中,我们想实现单击某个input元素即可选中里面的文本,那么在chrome里面显示是正常的,在嵌入安卓app里面也是没问题的,但是嵌入到IOS里面文本就会出现选不中的情况,请问这个问题引起的原因是什么呢?2.我们用的是vue,fastclick做延时处理,代码如下:<input v-if="type === 'text'" type="text" ref="inputCore" v-model="currentValue" @focus="onFocus" @input="handleInput" :placeholder="placeholder">onFocus () { let dom = this.$refs['inputCore'] dom.select() },
添加回答
举报
0/150
提交
取消