输入框问题

问题探究

1. ios中,输入框获得焦点时,页面输入框被遮盖,定位的元素位置错乱:

原因:当页input存在于吸顶或者吸底父/祖元素中时,用户点击输入框,输入法弹出后,fiexd失效,页面中定位好的元素随屏幕滚动。

新方案: 聚焦时给对应的fixed的元素设置为absolute,失焦后对应元素重新设置为fixed

// 如:
$("#form_article").focusin(function(){
  $('.navbar-fixed-bottom, .navbar-fixed-top').css({
    'position': 'absolute'
  })
})
            
$("#form_article").focusout(function(){
  $('.navbar-fixed-bottom, .navbar-fixed-top').css({
    'position': 'fixed'
  })
})

针对这个问题,我们一起来看下以下几种方案:

方案一: Web API 接口 :scrollIntoView 的应用,将input输入框显示在可视区域。

// 输入框获得焦点时,元素移动到可视区域inputOnFocus(e) {     setTimeout(function(){        e.target.scrollIntoView(true);         // true:元素的顶端将和其所在滚动区的可视区域的顶端对齐; false:底端对齐。     },200);  // 延时 == 键盘弹起需要时间}

一行代码,轻松搞定,输入框就乖乖的出现在你眼前了。

不过有点小缺陷:页面过长时,由于fixed失效,输入框依然也会跟着页面滑走。

这时,我们需要一个固定的输入框......

方案二:在输入框获得焦点时,将页面滑动到最底部,避免fixed导致的页面乱飞,并且保证input在最底部。

var timer;// 输入框获得焦点时,将元素设置为position:static,设置timerinputOnFocus(e) {     e.target.style.className = 'input input-static';     timer = setInterval(        function() {             document.body.scrollTop = document.body.scrollHeight         }, 100)};// 输入框失去焦点时,将元素设置为 position:fixed,清除timerinputOnbulr(e) {     e.target.parentNode.className = 'input input-fixed';    clearInterval(timer)};

效果如下图

输入框问题_第1张图片
image

当获得焦点弹出虚拟键盘后,input输入框会一直紧贴键盘顶部。如果,你的页面弹出输入法后不需要滑动查看其他内容,那么你对这种方案应该很中意。

But,可能你做的是一个类似聊天的页面,需要在回复时,查看历史消息,那么,请你继续往下看

方案三:将页面进行拆分: 页面(main) = 内容(sectionA) + 输入框(sectionB)+ 其他(sectionOther)

原理 : main.height = window.screen.height ;

sectionA 绝对定位,进行内部滚动 overflow-y:scroll ;

sectionB 可保证在页面最底部。

.main { position: relative; height: 100%; } .sectionA { box-sizing: border-box; padding-bottom: 60px; height: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch //为了使滚动流畅,sectionA 添加属性 } .sectionB { position: absolute; height: 60px; overflow: hidden; left: 0; right: 0; bottom: 0; }

纯css3打造,可以滚动,可以固定位置,基本满足大部分布局需要。

2. IOS 中单行输入框输入内容长被遮盖,不能显示全部,且不能左右滑动。

这个是IOS的一个bug,可以考虑用 textarea 替换 input,设置一行的高,进行上下滚动查看。(其他方案可以参看下面 第 6 点)

3. 获得焦点时,光标消失或错位:

-webkit-user-select:none 导致 input 框在 iOS 中无法输入,光标不出现,设置如下

user-select:text;-webkit-user-select:text;

利用scrollIntoView 使当前元素出现到指定位置,避免光标错位,设置如下:

e.target.scrollIntoView(true);  e.target.scrollIntoViewIfNeeded();

4. 进入页面如何自动获取焦点,弹出软键盘?

  • 添加 autofocus 属性 支持自动获得焦点
  • 触发 focus() 事件

5.随文字输入,输入框宽度自适应。

onkeyPress(e) {    const testLength = e.target.value.length;    e.target.style.width = `${testLength*8+10}px`  }

这种方案基本满足自动获取效果。

testLength _ 8 英文字符,testLength _ 16中文字符, +10为后边光标预留位置。 这种方案显然不适用于对精确度有很高要求的需求。

6. 介绍一个属性:contenteditable,模拟输入时动态获取宽高

(1)div设置contentditable=true 可以将此元素变成可输入状态。

(2)想要变成input输入框,利用css模拟输入框的样式

.inputContent{  color:#444;  border:#999 solid 1px;  border-radius: 3px;  padding: 5px 10px;  box-sizing: border-box;  min-width:50px;  max-width: 300px;  background: #ffffff;}

这里配合min-width,max-width 效果更真实。

(3)点击div可以弹出软键盘,但是无法输入内容,需要设置属性,如下

.inputContent{  user-select:text;  -webkit-user-select:text;}

这样就完成一个可以根据获取输入内容来动态来调节宽高。

(这里是一个gif图)

还可以利用js模拟placeholder等,这里就不展开了

7.其他问题及解决

  • 输入框获得焦点可弹出软键盘,却没有光标闪烁,也无法正常输入。

    -webkit-user-select:none 导致的,可以这样解决
*:not(input,textarea) {    -webkit-touch-callout: none;    -webkit-user-select: none;}
  • input 自定义样式
// 使用伪类input::-webkit-input-placeholder,input::-moz-placeholder,input::-ms-input-placeholder {  ...style  text-align: center;}

input框限制输入为纯数字

业务需要,在年龄或者卡号输入时只允许为纯数字,不允许用户输入非数字字符。

解决方法
1. input type属性为number限定

      // 可以唤起手机数字键盘

已知bug:

  1. type="number可以输入e字符
  2. IOS手机上不兼容
2. 用正则来限定输入参数
$('#txtInput').on('input',function () {
     $(this).val($(this).val().replace(/[^0-9]/g, ''))
 })

用oninput来实时监听input框value值的变化

IOS输入法弹出和切换语言时出现的输入框遮挡问题

IOS在软键盘弹起来时,input框未随着软键盘弹起来,或者切换软键盘时,软键盘高度变化了,input框未跟着移动(目前无解。。。)

解决方法
1. 定时器循环设置document.body.scrollTop
let timer = null
 timer = setInterval(function() {
    document.body.scrollTop = document.body.scrollHeight;
}, 500);

只要document.body.scrollTop大于软键盘的高度即可。一直用定时器在定位,即使滚动了背后的元素,也可以马上定位回来,然后在失去焦点的时候清除定时器。scrollIntoView这个属性也是相关定位

已知bug:

1. iphone x 上的输入框会一直闪,每隔500ms闪,安卓和iphone6上未发现。是否将500ms改成100ms就不会闪了???

优化:如何不用定时器 ?监听键盘或者背后元素移动事件来实时定位,来节省资源?(看方法2)

2. 定时器循环有条件设置document.body.scrollTop
let teacher_info_timer = null 
    let scrollTopHeight = undefined
    teacher_info_timer = setInterval(function() {
          console.log('scrollTop', document.body.scrollTop)
          if(document.body.scrollTop !== scrollTopHeight) {
            console.log('进来了', document.body.scrollTop)
            scrollTopHeight = document.body.scrollTop
            document.body.scrollTop = document.body.scrollHeight;
          }
        }, 500);

优化:实时判断document.body.scrollTop有无变化,有变化再去改变定位
最后还是放弃这种了,因为IOS12上面还是不兼容,会闪一次,没有方法1那么频繁而已,所以此问题暂时无解,要是能主动监控键盘高度变化就好了。

IOS12上的手机软键盘收回页面问题

IOS12系统上软键盘收起来,页面不会自动弹下来,IOS12以下没有问题

解决方法

在input的onblur事件中手动设置html,body的scrollTop值

$('html, body').scrollTop(0)

备注:原理就是将页面滚动一下,将dom元素重新排列到正常的位置,所以scrollTop的值可以看情况而定,不一定非得是0

input标签maxLength兼容性问题

目前发现在索尼手机安卓5.1微信浏览器上发现maxLength约束字符无用

新方案:


解决方法

动态检测input中val的长度,然后截取值

$('#cnt').bind('input propertychange', function () { // 动态检测
    var val = $(this).val()
    var valLength = val.length;
    if (valLength >= 800) {
       $(this).val(val.substr(0, 800)) // 截取字符
       $(this).blur();
       setTimeout(function () {
          $dato.toast("您本次输入已达到上限800字");
       }, 300)
    }
})

你可能感兴趣的:(输入框问题)