当前位置:主页 > 移动开发 > iOS代码 >

解决ios h5 input输入框被输入法弹出一块区域的问题

时间:2021-06-09 08:08:01 | 栏目:iOS代码 | 点击:

问题:如下图

解决方案 scrollIntoView

scrollIntoView(alignWithTop) 滚动浏览器窗口或容器元素,以便在当前视窗的可见范围看见当前元素。如果alignWithTop为true,或者省略它,窗口会尽可能滚动到自身顶部与元素顶部平齐

/**
 * 
 * 使用方法 输入框中 onclick="sr(this);" onblur="nosr(this)"
 */
var timer1;
function sr(obj) {
	timer1 = setInterval(function() {
		obj.scrollIntoView(false);
	}, 100);
 
}
function nosr(obj) {
	clearInterval(timer1);
}

您可能感兴趣的文章:

相关文章