移动端iOS中input聚焦不灵敏
时间:2020-06-03 20:10:39
收藏:0
阅读:118
FastClick.attach(document.body);
FastClick.prototype.focus = function (targetElement) {
let length;
if (targetElement.setSelectionRange && targetElement.type.indexOf(‘date‘) !== 0 && targetElement.type !== ‘time‘ && targetElement.type !== ‘month‘) {
length = targetElement.value.length;
targetElement.focus();
targetElement.setSelectionRange(length, length);
} else {
targetElement.focus();
}
}
转载:https://www.jianshu.com/p/053454429e0d
评论(0)