微信小程式-頁面連結

奮程式序猿發表於2016-11-14

頁面連結。

注:navigator-hover預設為{background-color: rgba(0, 0, 0, 0.1); opacity: 0.7;}<navigator/>的子節點背景色應為透明色

示例程式碼:

/** wxss **/
/** 修改預設的navigator點選態 **/
.navigator-hover {
    color:blue;
}
/** 自定義其他點選態樣式類 **/
.other-navigator-hover {
    color:red;
}
<!-- sample.wxml -->
<view class="btn-area">
  <navigator url="navigate?title=navigate" hover-class="navigator-hover">跳轉到新頁面</navigator>
  <navigator url="redirect?title=redirect" redirect hover-class="other-navigator-hover">在當前頁開啟</navigator>
</view>
<!-- navigator.wxml -->
<view style="text-align:center"> {{title}} </view>
<view> 點選左上角返回回到之前頁面 </view>
<!-- redirect.wxml -->
<view style="text-align:center"> {{title}} </view>
<view> 點選左上角返回回到上級頁面 </view>
// redirect.js navigator.js
Page({
  onLoad: function(options) {
    this.setData({
      title: options.title
    })
  }
})

 

相關文章