vue H5页面IOS中键盘弹出导致点击错位的问题


    onBlur() {
      setTimeout(function() {
        window.scrollTo({
          top: 0,
          left: 0,
          behavior: "smooth"
        });
      }, 300);
    },
    onFocus(e) {
      setTimeout(function() {
        e.target.scrollIntoView({block: "center"});
        // document.body.scrollTop = this.showHeight;
      }, 300);
    },

你可能感兴趣的:(vue,h5,input)