Scroll page on text input focus for mobile devices?

前端 未结 3 532
自闭症患者
自闭症患者 2021-02-02 15:01

Im making a mobile optimised site with a text input which filters a list as you type. Its similar to this: http://jquerymobile.com/test/docs/lists/lists-search.html

For

3条回答
  •  [愿得一人]
    2021-02-02 15:25

    Agreed - that'd be nice for usability.

    If you're using jQuery, this should do the trick:

    $('#id-of-text-input').on('focus', function() {
        document.body.scrollTop = $(this).offset().top;
    });
    

提交回复
热议问题