H5, andriod 에서 input 초점 이 소프트 키보드 에 있 을 때 input 상자 가 가 려 지 는 문제, ios 에서 input 상자 가 초점 을 잃 었 을 때 페이지 가 위로 올 라 가 는 문제, fixed 포 지 셔 닝 은 소프트 키보드 가 꺼 질 때 올 라 갑 니 다.
7231 단어 적합 한 문제
해결 방향
해결 방법:
scrollIntoView()
방법//html
<input name="phone" type="number" value=""
onblur="inputBlur();" id="inp_dom"
placeholder=" " />
//js
//andriod
var u = navigator.userAgent;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
if(isAndroid == true){
$('#inp_dom').focus(function(e){
$('.fixed-operation').css('position','relative');
var target = this;
target.scrollIntoViewIfNeeded();
e.target.scrollIntoView({
block: "center"
});
})
}
//ios
function inputBlur(){
var u = navigator.userAgent;
var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
$('.fixed-operation').css('position','fixed');
if(isIOS && !$('#inp_dom').is(":focus")){
window.scrollTo({top:0, left:0, behavior:"smooth"});
}
}