1. 程式人生 > >微信小程序--簡單頁面跳轉

微信小程序--簡單頁面跳轉

nav on() ott url tex bsp function toa toast

首先對text 設置監聽事件 <view bindtap="toast" class="usermotto"> <text class="user-motto">{{motto}}</text> </view> 然後對該text 設置事件跳轉。 //事件處理函數 點擊text toast: function() { wx.navigateTo({ url: ‘../blueberry/blueberry‘ }) }

微信小程序--簡單頁面跳轉