wx.createSelectorQuery().selectAll(\'.npl-intro\').boundingClientRect(function (rect) { console.log(rect[0].height) console.log(rect[0].width) }).exec()
如果觉得这样写有点长。可以分步写。也是一样的结果。
var obj=wx.createSelectorQuery(); obj.selectAll(\'.npl-intro\').boundingClientRect(function (rect) { console.log(rect[0].height) console.log(rect[0].width) }) obj.exec() ;
或者在exec中返回,如果出现上面的方式出现获取到的 rect 是 null 的话,可以考虑用下面这种,就不会出现问题。结果是一样的。
var obj=wx.createSelectorQuery(); obj.selectAll(\'.npl-intro\').boundingClientRect(); obj.exec(function (rect) { console.log(rect[0].height) console.log(rect[0].width) }) ;
请发表评论