當出發某一事件後,但願在規定的時間後自動執行另外一事件,好比頁面跳轉功能。函數
使用setTimeout函數,單位爲毫秒msurl
1 setTimeout(function(){ 2 wx.redirectTo({ 3 url: '../test/test' 4 }) 5 },3000)