How to automatically jump to the page in the mini program

青灯夜游
Release: 2021-06-10 09:06:34
forward
4910 people have browsed it

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.

How to automatically jump to the page in the mini program

WeChat applet's automatic jump page:

The program that defines the desktop in the page.wxml file:


< image src="../../images/first.png">
Copy after login

In the current directory Add automatic jump to the page in js

Page({
//监听页面显示
onShow: function () {
    //自动跳转到login
    setTimeout(function(){
	//页面跳转相当于	
      wx.navigateTo({
        url: '../login/login',
      })
    },3000);
  },
})
Copy after login

Method:

setTimeout(函数,毫秒值)
Copy after login

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!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!