Scroll textfield up when keyboard popsup

前端 未结 3 1500
旧时难觅i
旧时难觅i 2021-02-04 14:21

I am using html5/javascript/jQuery/css for mobile app development. I have multiple textareas in the app. When I click on that to input, keyboard popup (android tab). But the tex

3条回答
  •  情歌与酒
    2021-02-04 15:08

    To complete the answer, if you want to animate the scroll replace:

    $htmlOrBody.scrollTop(textareaTop - scrollTopPadding);
    

    by

    var timing = 250;
    $htmlOrBody.animate({ scrollTop: textareaTop - scrollTopPadding }, timing);
    

提交回复
热议问题