在移动端的web开发中,一提起输入框,程序猿(媛)肯定有很多可以吐槽的点。在输入框的运用中,小编也是很心累呀~ ios中,输入框获得焦点时,页面输入框被遮盖,定位的元素位置错乱
前言
问题探究
1. ios中,输入框获得焦点时,页面输入框被遮盖,定位的元素位置错乱:
// 输入框获得焦点时,元素移动到可视区域
inputOnFocus(e) {
setTimeout(function(){
e.target.scrollIntoView(true);
// true:元素的顶端将和其所在滚动区的可视区域的顶端对齐; false:底端对齐。
},200); // 延时 == 键盘弹起需要时间
}
var timer;
// 输入框获得焦点时,将元素设置为position:static,设置timer
inputOnFocus(e) {
e.target.style.className = 'input input-static';
timer = setInterval(
function() {
document.body.scrollTop = document.body.scrollHeight
}, 100)
};
// 输入框失去焦点时,将元素设置为 position:fixed,清除timer
inputOnbulr(e) {
e.target.parentNode.className = 'input input-fixed';
clearInterval(timer)
};
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; }
2. IOS中单行输入框输入内容长被遮盖,不能显示全部,且不能左右滑动。
3. 获得焦点时,光标消失或错位:
user-select:text;
-webkit-user-select:text;
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`
}
6. 介绍一个属性:contenteditable,模拟输入时动态获取宽高
<div class="inputContent" contenteditable="true" ></div>
.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;
}
.inputContent{
user-select:text;
-webkit-user-select:text;
}
7.其他问题及解决
*:not(input,textarea) {
-webkit-touch-callout: none;
-webkit-user-select: none;
}
// 使用伪类
input::-webkit-input-placeholder,
input::-moz-placeholder,
input::-ms-input-placeholder {
...style
text-align: center;
}
原文出处: 大转转FE - 张颖