当前位置:   article > 正文

uniapp怎么获取元素高度,获取元素节点信息,获取界面剩余高度_uniapp 获取元素高度

uniapp 获取元素高度

一、在uniapp项目开发的过程中,常常需要获取元素的高度信息,来更容易的实现元素的布局控制,使用场景:列入动态的计算容器的高度,设置组件的最小高度等等

在获取元素节点信息中,通常有两种情况:①获取单个 ②获取v-for循环元素的节点信息,话不多说,直接上代码

注意:需要在onReady()之后获取,否则无效

①、使用uni.createSelectorQuery()来获取节点信息

  1. <template>
  2. <view>
  3. <view class="box"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onReady() {
  13. //.box获取class为box的元素,如果使用的id= 'box' 则使用'#box'
  14. uni.createSelectorQuery().select('.box').boundingClientRect(data => {
  15. console.log(data)
  16. }).exec()
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. .box {
  24. height: 100px;
  25. width: 200px;
  26. background-color: pink;
  27. }
  28. </style>

②、通过selectAll()来实现获取循环元素的节点信息

  1. <template>
  2. <view>
  3. <view class="box" v-for="item in 4"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onReady() {
  13. //.box获取class为box的元素,如果使用的id= 'box' 则使用'#box'
  14. uni.createSelectorQuery().selectAll('.box').boundingClientRect(data => {
  15. console.log(data)
  16. }).exec()
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. .box {
  24. height: 100px;
  25. width: 200px;
  26. background-color: pink;
  27. }
  28. </style>

二、 同时在开发中常常还会遇到需要计算页面剩余高度,用于设置其他元素的高度

实现原理:首先获取设备高度(uni.getSystemInfo())减去其他容器的高度,则为页面剩余高度

  1. <template>
  2. <view>
  3. <view class="box"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onReady() {
  13. uni.getSystemInfo({
  14. success(res) {
  15. let screenHeight = res.screenHeight
  16. let height = ''
  17. //.box获取class为box的元素,如果使用的id= 'box' 则使用'#box'
  18. uni.createSelectorQuery().select('.box').boundingClientRect(data => {
  19. height = screenHeight - data.height
  20. console.log(height)
  21. }).exec()
  22. }
  23. })
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. .box {
  31. height: 100px;
  32. width: 200px;
  33. background-color: pink;
  34. }
  35. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/538168
推荐阅读