码迷,mamicode.com
首页 > 微信 > 详细

小程序总结(不断更新)

时间:2019-07-05 19:30:10      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:lang   event   UNC   小程序   class   nbsp   fun   func   view   

xml

<!--wxml-->
<view wx:for="{{array}}"> {{item}} </view>
// page.js
Page({
  data: {
    array: [1, 2, 3, 4, 5]
  }
})

 

事件绑定

<view bindtap=onbind>
    我是事件2
    <view catchtap=onBind>我是事件1</view>
</view>

 onBind: function (event) {
    console.log("事件1执行了")
  },
  onbind: function (event) {
    console.log("事件2执行了")
  }

 

小程序总结(不断更新)

标签:lang   event   UNC   小程序   class   nbsp   fun   func   view   

原文地址:https://www.cnblogs.com/llllpzyy/p/11139999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!