数据驱动、坚持为客户提供有价值的服务和内容
微信小程序获取菜单按钮(右上角胶囊按钮)的布局位置信息,可以使用Object wx.getMenuButtonBoundingClientRect()接口,坐标信息以屏幕左上角为原点。
示例代码:
const res = wx.getMenuButtonBoundingClientRect() console.log(res.width) console.log(res.height) consol