input textbox hidden behind keyboard on android Chrome

后端 未结 7 675
梦毁少年i
梦毁少年i 2020-12-13 13:49

I have a mobile web page of the following format:

header - logo etc - absolute positioned

content - scrollable, absolute positioned

footer, 40px abs

7条回答
  •  甜味超标
    2020-12-13 14:29

    I used scrollIntoView to solve this issue.

    $(document).on('focus', selector, function() {
        document.querySelector(selector).scrollIntoView();
    });
    

提交回复
热议问题