部分問題可參考:www.cnblogs.com/ljx20180807…html
input.addEventListener('blur', () => {
setTimeout(() => {
window.scrollTo(document.body.scrollLeft, document.body.scrollTop);
}, 20)
})
複製代碼
若是引入了fastclick,那麼須要修改源碼,以下web
FastClick.prototype.focus = function(targetElement) {
targetElement.focus();
};
複製代碼
若是還有問題,嘗試監聽input的focus,而後延時聚焦bash
this.jInput.addEventListener('focus', () => {
setTimeout(() => {
this.jInput.focus()
}, 300)
})
複製代碼
若是沒有引入fastclick,網上找其餘緣由吧,還沒遇到過ui