在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
<div class="ex" >三行的高度,三行的高度,三行的高度,三行的高度,三行的高度,三行的高度,三行的高度</div> mounted: function (){ //页面中直接调用 this.getElementHeight('#ex') //组件中调用,我也不知道为什么要重新定义this let _this = this setTimeout(function(){ _this.getElementHeight('#tit'+_this.index) }, 100) }) } methods: { // 获取指定元素实际宽度 getElementHeight(id = "") { let _query = wx.createSelectorQuery(); _query.select(id).boundingClientRect() _query.exec((res) =>{ this.tHeight = res[0].height }) }, } |
请发表评论