This article will introduce to you how to automatically jump to the page in the WeChat applet. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
WeChat applet's automatic jump page:
The program that defines the desktop in the page.wxml file:
<scroll-view> < image src="../../images/first.png"></image> </scroll-view>
In the current directory Add automatic jump to the page in js
Page({ //监听页面显示 onShow: function () { //自动跳转到login setTimeout(function(){ //页面跳转相当于 wx.navigateTo({ url: '../login/login', }) },3000); }, })
Method:
setTimeout(函数,毫秒值)
Related learning recommendations:Small program development tutorial
The above is the detailed content of How to automatically jump to the page in the mini program. For more information, please follow other related articles on the PHP Chinese website!