uniapp 获取最底部高度
时间: 2023-09-03 16:09:29 浏览: 98
Uniapp微信小程序滚动条跳转到元素高度
可以使用uni.getSystemInfoSync()获取系统信息,再通过uni.createSelectorQuery()获取页面节点信息,最后计算出最底部的高度。
示例代码:
```
// 获取系统信息
const systemInfo = uni.getSystemInfoSync()
// 创建选择器
const query = uni.createSelectorQuery()
// 获取页面节点信息
query.select('.page').boundingClientRect()
// 计算最底部的高度
query.exec((res) => {
const pageHeight = res[0].height
const bottomHeight = systemInfo.windowHeight - res[0].bottom
console.log(`最底部高度为:${bottomHeight}`)
})
```
阅读全文