uniapp h5端tab页有input当它获得焦点,安卓底部的导航栏被弹起的解决办法

            resize() {
				this.clientHeight = `${document.documentElement.clientHeight}px`;
				window.onresize = () => {
					const clientHeight = `${document.documentElement.clientHeight}px`;
					const tarbar = document.getElementsByClassName('uni-tabbar')[0]
					if (clientHeight < this.clientHeight) {
						tarbar.style.position = 'static'
					} else {
						tarbar.style.position = 'fixed'
					}
				};
			},

在onload中调用

你可能感兴趣的:(uniapp h5端tab页有input当它获得焦点,安卓底部的导航栏被弹起的解决办法)