【问题标题】:adding images next to radio buttons in cakephp在 cakephp 中的单选按钮旁边添加图像
【发布时间】:2012-04-29 03:55:34
【问题描述】:

如何在 cakephp 中创建单选按钮并将图像附加到每个按钮?是否有可能,我正在使用

创建一个动态单选按钮列表
echo $this->Form->input('db.field', array('type' => 'radio', 'options' => $myOptions,  'label' => 'myLabel')); ?>

有什么帮助吗?谢谢 :D

【问题讨论】:

    标签: php cakephp radio-button radio


    【解决方案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数组的键
    猜你喜欢
    • 1970-01-01
    • 2012-08-06
    • 2019-01-13
    • 2022-11-11
    • 2014-10-28
    • 1970-01-01
    • 1970-01-01
    • 2016-08-01
    • 2013-10-01
    相关资源
    最近更新 更多