我们分别演示一下上述两种方式:先看效果图
上述的效果图中,我们可以看出两种页面跳转的区别。
.js代码
<view> <navigator url="../other/other" hover-class="changestyle">页面跳转,可以返回</navigator> </view> <view> <navigator url="../other/other" hover-class="changestyle" redirect>页面跳转,无法返回</navigator> </view>
.wxss代码
.changestyle{ color: red; }
以上就是微信小程序开发中navigator页面跳转的介绍的详细内容,更多请关注php中文网其它相关文章!
……