码迷,mamicode.com
首页 > 移动开发 > 详细

移动端iOS中input聚焦不灵敏

时间:2020-06-03 20:10:39      阅读:118      评论:0      收藏:0      [点我收藏+]

标签: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

移动端iOS中input聚焦不灵敏

标签:rip   focus   click   set   document   fas   mon   java   移动   

原文地址:https://www.cnblogs.com/huahaiwujiang/p/13039674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!