小程序输入框导致界面上移,在输入的时候固定住页面的解决代码

效果:

小程序输入框导致界面上移,在输入的时候固定住页面的解决代码_第1张图片

代码:


	
		
			{{item}}
		
		
			
			
			
			
		
	

.comment {
  width: 100%;
  z-index: 3;
  position: absolute;
  bottom: 0;
  z-index: 222;
  background: #fff;
}

  inputFocus (e) {
    this.setData({bottom: e.detail.height})
  },
  inputBlur () {
    this.setData({bottom: 0})
  },

 

你可能感兴趣的:(Web前端,微信小程序,输入框导致界面上移,小程序输入时页面往上顶,小程序输入框页面上移,输入框,上移)