uni-app 獲取元素寬高


一:
getDescBox () {
  uni.createSelectorQuery().in(this).select('.' + class).boundingClientRect(result => {
    if (result) {
      console.log(result)
    } else {
      this.getDescBox()
    }
  }).exec()
}
二:
getDescBox () {
  uni.createSelectorQuery().in(this).select('.' + class).boundingClientRect().exec((res)=>{
    
if (res\[0\]) {
      
this.descHeight \= res\[0\].height
    }else {
      this.$nextTick(()=>{
        this.getDescBox()
       })
    }
  })
}
 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM