view style='width:100%;height:80rpx;' id='navigation'></view>
wx.createSelectorQuery().select('#navigation').boundingClientRect(function (rect) {
rect.id // 節點的ID
rect.dataset // 節點的dataset
rect.left // 節點的左邊界坐標
rect.right // 節點的右邊界坐標
rect.top // 節點的上邊界坐標
rect.bottom // 節點的下邊界坐標
rect.width // 節點的寬度
rect.height // 節點的高度
}).exec()