标签: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