小程序--页面跳转
Posted 好笑。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序--页面跳转相关的知识,希望对你有一定的参考价值。
wxml页面
<view catchtap=\'onTapJump\' class=\'journey-container\'> <text class=\'journey\'>开启小程序之旅</text> </view>
wxss页面
.journey-container{ margin-top: 200rpx; border: 1px solid #ea5a3c; width: 200rpx; height: 80rpx; border-radius:5px; text-align: center; } .journey{ font-size: 22rpx; font-weight: bold; line-height: 80rpx; color: #ea5a3c; } page{ background-color: #ecc0a8; }
js页面
Page({ onTapJump:function(event){ wx.redirectTo({ url: \'../posts/posts\', success:function(){ console.log("jump success"); }, file:function(){ console.log("jump failed"); }, complete:function(){ console.log("jump complete"); } }) } })
效果图:(点击跳转到另一个页面)
以上是关于小程序--页面跳转的主要内容,如果未能解决你的问题,请参考以下文章