1. 程式人生 > >小程式獲取元素的一些屬性

小程式獲取元素的一些屬性

let query = wx.createSelectorQuery()
        query.select('#canvas').boundingClientRect(res => {
          this.canvasWidth = Math.round(res.width)
          this.canvasHeight = Math.round(res.height)
        }).exec()

boundingClientRect 方法的返回值