vue-chat icon indicating copy to clipboard operation
vue-chat copied to clipboard

苹果手机输入法把页面顶上去不能还原问题

Open 977106024 opened this issue 7 years ago • 1 comments

苹果手机输入法打完字后,收起键盘页面顶在上面不能自动还原,这个问题有人知道吗?

977106024 avatar Dec 11 '18 03:12 977106024

<input @blur="resetHeight">
  resetHeight() {
    setTimeout(() => {
      const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
      window.scrollTo(0, Math.max(scrollHeight - 1, 0));
    }, 100);
  }

hugojing avatar Sep 04 '19 06:09 hugojing