我如何在cakephp中创建单选按钮,并为每个按钮附加一个图像?这可能吗?我正在使用
echo $this->Form->input('db.field', array('type' => 'radio', 'options' => $myOptions, 'label' => 'myLabel')); ?>
请帮忙吗?谢谢
t98cgbkg1#
您可以简单地将图像放入选项数组:
$myOptions = array(); $myOptions['power'] = $this->Html->image('cake.power.gif'); $myOptions['icon'] = $this->Html->image('cake.icon.png'); echo $this->Form->input('db.field', array('type' => 'radio', 'options' => $myOptions, 'label' => 'myLabel')); ?>
1条答案
按热度按时间t98cgbkg1#
您可以简单地将图像放入选项数组: