input textbox hidden behind keyboard on android Chrome

后端 未结 7 652
梦毁少年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();
    });
    
    0 讨论(0)
提交回复
热议问题