小程序总结(不断更新)
时间:2019-07-05 19:30:10
收藏:0
阅读:146
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执行了") }
评论(0)