微信小程序滚动区域

wxml如下,滚动跳转必须设置height,stroll-top为滑块位置,不可省略。


>
《微信小程序快速开发:视频指导版》.....

目录

第1章 微信小程序介绍
....





JS文件如下:
Page({
  data: {
    toView: '',
    scrollTop: 10
  },
  jumpmulu: function (e) {
    this.setData({
      toView: 'mulu'
    })
  },
  jumptop: function (e) {
    this.setData({
      toView: 'intro'
    })
  },
  onLoad: function (options){
   var that=this
   wx.getSystemInfo({
     success: function (res) {
       that.setData({
        h:res.windowHeight
       })
     }
   })
 }
})


你可能感兴趣的:(小程序)