首页 > 系统 > iOS > 正文

解决移动端 ios 系统键盘遮挡的问题

2020-07-26 02:34:53
字体:
来源:转载
供稿:网友

亲测 ios 9 ,ios10 系统有效,其他请自行测试,建议通过判断系统类型来动态引入此脚本

var isIPHONE = navigator.userAgent.toUpperCase().indexOf("IPHONE")!= -1;if(isIPHONE){ // 元素失去焦点隐藏iphone的软键盘 function objBlur(obj,time){  var startTime=0,endTime=0,  time = !time?30:time,  docTouchend = function(event){   endTime = new Date().getTime();   if(event.target!= obj && (endTime - startTime <300)){    setTimeout(function(){     obj.blur();     document.removeEventListener("touchend", docTouchend,false);    },time);   }  };  document.addEventListener("touchstart",function(){   startTime = new Date().getTime();  });  document.addEventListener("touchend", docTouchend,false); } $("input").on("focus",function(){  var id = this.id;  var self = this;  var H = window.innerHeight;  var pos = getPosition(self);  if(isIPHONE){   var input = new objBlur(self);   input=null;  } }); function getPosition(target) {  var left = 0, top = 0;  do {   left += target.offsetLeft || 0;   top += target.offsetTop || 0;   target = target.offsetParent;  } while(target);  return {   left: left,   top: top  }; }}

以上这篇解决移动端 ios 系统键盘遮挡的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表