uniapp获得控件宽度(H5、小程序)

H5端获得控件的宽度
// #ifdef H5
let width= this.$el.querySelector(‘.btn‘).clientWidth;				
// #endif

微信小程序获得控件的宽度
// #ifdef MP
let width= 0;
				
var query = this.createSelectorQuery();
query.select(‘.btn‘).boundingClientRect(
      function(rect){
            if(rect.width){
                  width=rect.width;	
	      }
	}
      ).exec();								
// #endif

参考链接:SelectorQuery wx.createSelectorQuery()

uniapp获得控件宽度(H5、小程序)

上一篇:【uniapp开发微信小程序】自定义底部导航栏


下一篇:小程序简单收缩菜单