uniapp单选和复选按钮
<!--单选--><radio-group ><label ><view><radio value="男" checked /></view><view>男</view></label><...
·
<!--单选-->
<radio-group >
<label >
<view>
<radio value="男" checked />
</view>
<view>男</view>
</label>
<label >
<view>
<radio value="女" />
</view>
<view>女</view>
</label>
</radio-group>
<!--多选-->
<view class="uni-padding-wrap uni-common-mt">
<view>
<checkbox-group>
<label>
<checkbox value="篮球" />篮球
</label>
<label>
<checkbox value="足球" />足球
</label>
<label>
<checkbox value="乒乓球" />乒乓球
</label>
</checkbox-group>
</view>
</view>
更多推荐
已为社区贡献3条内容
所有评论(0)