微信小程序--简单页面跳转
Posted 爱吃醋的工程师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序--简单页面跳转相关的知识,希望对你有一定的参考价值。
首先对text 设置监听事件
<view bindtap="toast" class="usermotto">
<text class="user-motto">{{motto}}</text>
</view>
然后对该text 设置事件跳转。
//事件处理函数 点击text
toast: function() {
wx.navigateTo({
url: ‘../blueberry/blueberry‘
})
}
以上是关于微信小程序--简单页面跳转的主要内容,如果未能解决你的问题,请参考以下文章