小程序 P39 01.声明式导航页面导航指的是页面之间的相互转换。浏览器中实现页面导航的方式有如下两种:①<a>链接 ②location.href<!--pages/home/home.wxml--><navigator url="/pages/massage/massage" open-type="switchTab">导航到消息页面</navigator><navigator url="/pages/info/info">导航到info页面</navigator><!--pages/info/info.wxml--><text>pages/info/info.wxml</text><navigator open-type="navigateBack" delta="1">后退</navigator><!--可以省略delta="1"-->