uniAPP·DIV元素获取高度

uniAPP·DIV元素获取高度

uni.getSystemInfo({ //获取屏幕高度
					success: res => {
						this.windowHeight = res.windowHeight;
						console.log("获取屏幕高度:",res.windowHeight)  //res.windowHeight是返回的屏幕高度
					}
				});
				
				 // 获取元素高度
				let query = uni.createSelectorQuery().in(this);
				query.select('#info_TextContentID').boundingClientRect();
				query.exec(res => {
					console.log("元素高度:",res[0].height) // 元素高度
					this.swiperHeight = res[0].height; // 返回的值可以用作动态修改swiper高度
				});
1,084 Views
分享你的喜爱
linwute
linwute

我要像梦一样自由,像大地一样宽容;
在艰辛放逐的路上,点亮生命的光芒;
我要像梦一样自由,像天空一样坚强;
在曲折蜿蜒的路上,体验生命的意义;

留下评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注