标签:rip focus click set document fas mon java 移动
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
标签:rip focus click set document fas mon java 移动
原文地址:https://www.cnblogs.com/huahaiwujiang/p/13039674.html