解决安卓软键盘遮住输入框

安卓手机点击输入框时,弹起的软键盘可能会遮挡住输入框,

解决方法如下:(所有输入框在点击时调用以下方法)

focusInput() {
	var u = navigator.userAgent;
	if(u.indexOf('Android') > -1 || u.indexOf('Adr') > -1) {
		window.addEventListener("resize", function() {
	    if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
	         window.setTimeout(function() {
	            document.activeElement.scrollIntoView(false);//scrollIntoViewIfNeeded()
	         },0);
	      }
	   })
	}
},

 

一、scrollIntoView():让当前的元素滚动到浏览器窗口的可视区域内

参数:

alignToTop (Boolean型参数):
1.如果为true,元素的顶端将和其所在滚动区的可视区域的顶端对齐。
2.如果为false,元素的底端将和其所在滚动区的可视区域的底端对齐。

scrollIntoViewOptions (Object型参数)

{
    behavior: "auto"  | "instant" | "smooth",
    block:    "start" | "end",
}

1.如果是一个boolean,true 相当于{block: "start"},false 相当于{block: "end"}
2.behavior这个选项决定页面是如何滚动的,实测auto与instant都是瞬间跳到相应的位置,而smooth就是有动画的过程 

 

示例

var element = document.getElementById("box");

element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({block: "end", behavior: "smooth"});

 

 

二、Element.scrollIntoViewIfNeeded():用来将不在浏览器窗口的可见区域内的元素滚动到浏览器窗口的可见区域。 如果该元素已经在浏览器窗口的可见区域内,则不会发生滚动。 此方法是标准的Element.scrollIntoView()方法的专有变体。

你可能感兴趣的:(js示例)