H5移动端输入框弹出后,页面光标焦点错位
2019-08-21 本文已影响0人
真是个非常帅气的昵称呢
为input绑定失去焦点事件
<input @blur="handleBlur" type="text">
handleBlur(){
setTimeout(function(){
var top=document.documentElement.scrollTop || document.body.scrollTop || 0;
window.scrollTo(0,Math.max(top-1,0))
},100)
}