如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
代码如下
<checkbox-group bindchange="checkboxChange"> <block wx:for="{{data.user}}"> <checkbox name="xgry" value="{{item.id}}" /> <text>{{item.name}}</text> </block> </checkbox-group>
checkboxChange: function (e) { console.log('checkbox发生change事件,携带value值为:', e.detail.value) console.log("长度:" + e.detail.value.length); this.setData({ typeId: e.detail.value, length: e.detail.value.length }) },