大家好,又见面了,我是你们的朋友全栈君。
通过为按钮添加时间处理来实现页面跳转。
代码如下:
<!--pages/test/test.wxml-->
<text>这是测试页</text>
<button bindtap='bindToLogs'>跳转到日志</button>
<button bindtap='bindToIndex'>返回首页</button>
// pages/test/test.js
Page({
data: {
},
//事件处理函数
bindToLogs:function(){
wx.switchTab({
url: '../logs/logs',
})
},
bindToIndex: function () {
wx.switchTab({
url: '../index/index',
})
}
})
运行结果:
注意:
小贴士:
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/126066.html原文链接:https://javaforall.cn