You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
376 B

<!--pages/test/checkbox.wxml-->
<text>pages/test/checkbox.wxml</text>
<view class="demobox">
<view class="title">使用数组批量生成选项</view>
<checkbox-group bindchange="onChange">
<view wx:for="{{checkboxItem}}" wx:key="index">
<checkbox value="{{item.value}}" checked="{{item.checked}}">{{item.name}}</checkbox>
</view>
</checkbox-group>
</view>