首先有一个输入框

<input type = "number v-model = 'currValue' @blur = "onBlur" >

通过监听是否失去焦点来调用方法 onBlur()

onBlur() {
      document.body.addEventListener("focusout", () => {
        setTimeout(() => {
          const scrollHeight =
                  document.documentElement.scrollTop || document.body.scrollTop || 0;
          window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);
      });
    }

通过监听软键盘是否关闭,来滑动屏幕,使留白消失。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐