1

有人请给我一些想法!我想生成多个带有图像的复选框以及标签中的文本。我在 Checkbox 的联系表单中创建了一个名为 solutioncheckbox 的字段。我的代码如下,用于创建多个复选框

<?php echo $this->Form>input('solutioncheckbox',array('label'=>false,'type'=>'select','class'=>'solution','multiple'=>'checkbox','options'=>array(1=>'WEB DESIGN',2=>'WEB DEVELOPMENT',3=>'GRAPHICS DESIGN'))) ;?>

我可以在我的表单中创建一个图像以及每个标签(如网页设计、网页开发等)中的文本吗

4

1 回答 1

1

这将为您完成工作;)

echo $this->Form->input
    (
        'Model.field',
        array
        (
            'multiple' => 'checkbox',
            'options' => array('1' => $this->Html->image('cake.icon.png') . 'Text beside the image', '2' => $this->Html->image('test-error-icon.png') . 'Other text beside the image'),
            'escape' => FALSE
        )
);
于 2013-05-02T09:26:57.943 回答