yii2中的checkboxList

来源:互联网 发布:浙江师范大学知行学院 编辑:程序博客网 时间:2024/06/05 17:55
<?= $form->field($model, 'sex')->checkboxList([0 => '男', 1 => '女', 2 => '保密'], [    'value' => [0, 1],    'item' => function ($index, $label, $name, $checked, $value) {    $checkStr = $checked ? "checked" : "";    return '<label><input type="checkbox" name="' . $name . '" value="' . $value . '" ' . $checkStr . ' class="class' . $index . '" data-uid="user' . $index . '">' . $label . '</label>';}, 'itemOptions' => ['class' => 'myClass']]); ?>
其他:
yii2-cookbook-chinese
yii2-cookbook-chinese
yii2-cookbook
原创粉丝点击