Checkbox 复选框

在一组可选项中进行多选。

<div class="h5ui-checkbox" data-toggle="buttons">
    <label class="btn active">
        <input type="checkbox" checked="checked">
        <span class="h5ui-checkbox_bd">已选中</span>
        <span class="h5ui-checkbox_ft"></span>
    </label>

    <label class="btn active">
        <input type="checkbox" checked="checked">
        <span class="h5ui-checkbox_bd">已选中</span>
        <span class="h5ui-checkbox_ft"></span>
    </label>

    <label class="btn">
        <input type="checkbox">
        <span class="h5ui-checkbox_bd">未选</span>
        <span class="h5ui-checkbox_ft"></span>
    </label>

    <label class="btn disabled">
        <input type="checkbox">
        <span class="h5ui-checkbox_bd">锁定状态</span>
        <span class="h5ui-checkbox_ft"></span>
    </label>
</div>

最后更新于