Scroll page on text input focus for mobile devices?

前端 未结 3 597
自闭症患者
自闭症患者 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:42

    $('input, textarea').focus(function () {
        $('html, body').animate({ scrollTop: ($('input, textarea').offset().top - 10) }, 1);
        return false;
    });
    

提交回复
热议问题