
微信小程序开发笔记
小草dym
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
微信小程序开发笔记1
tabBar "tabBar": { "color": "#c0c0c0", "selectedColor": "#000000", "backgroundColor": "#f0f0f0", "borderStyle": "black", "position"原创 2018-11-19 23:59:35 · 326 阅读 · 0 评论 -
微信小程序开发2——数据绑定、控制属性
数据绑定index.wxml<!--index.wxml--><view class="container"> <!-- {{ }} 小胡子语法 专门用于输出逻辑层暴露的数据--> <text>{{message}}</text> <!-- input 默认是没有边框样式的 --> &原创 2018-11-23 12:39:16 · 1199 阅读 · 0 评论 -
微信小程序开发3——事件处理
事件处理index.wxml<!--index.wxml--><view bindtap="viewTapHandle"> <button bindtap="tapHandle">click me</button></view>index.js//index.js//获取应用实例const app原创 2018-11-24 17:26:15 · 1333 阅读 · 0 评论