在 cakephp 中的单选按钮旁边添加图像
Posted
技术标签:
【中文标题】在 cakephp 中的单选按钮旁边添加图像【英文标题】:adding images next to radio buttons in cakephp 【发布时间】:2012-04-29 03:55:34 【问题描述】:如何在 cakephp 中创建单选按钮并将图像附加到每个按钮?是否有可能,我正在使用
创建一个动态单选按钮列表echo $this->Form->input('db.field', array('type' => 'radio', 'options' => $myOptions, 'label' => 'myLabel')); ?>
有什么帮助吗?谢谢 :D
【问题讨论】:
【参考方案1】:您可以简单地将图像放入选项数组中:
$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')); ?>
【讨论】:
以及将值放在哪里? @endo.anaconda 值是$myOptions
数组的键以上是关于在 cakephp 中的单选按钮旁边添加图像的主要内容,如果未能解决你的问题,请参考以下文章
在 TableView 的自定义单元格中添加单选按钮并且无法访问外部