6

我将向 dropDownList 添加另一个属性。

我将使用 Yii dropDownList 生成一个这样的下拉列表:

<select name="city" id="city">
    <option value="1" test="123">one</option>
    <option value="2" test="234">two</option>
    <option value="3" test="345">three</option>
    <option value="4" test="456">four</option>
</select>

我将test属性添加到选项标签。

默认 Yii dropDownList 是:

<?php 

echo CHtml::activeDropDownList('City', 'City', array(1 => 'one', 2 => 'two')); 

?>

我怎么能做到这一点?

4

2 回答 2

12

尝试 :

<?php 
echo CHtml::dropDownList(
    'City',
    'City',
    array(1 => 'one', 2 => 'two'),
    array('options' => array(
        '1' => array('test' => '123'),
        '2' => array('test' => '234'),
    ))
);
?>
于 2013-11-08T14:57:49.697 回答
0

同样的事情,但在 Yii2

echo $form->field($model, 'id_type_question')->dropDownList(
    ArrayHelper::map(
        YourModel::find()->all(), 
        'option_id', 
        'option_value'
    ), 
    [
        'options' => ArrayHelper::map($models, 
            'id', 
            function ($m) { return [ 'your_tag' => $m['your_column'] ]; }
        )
    ]
); 
于 2018-08-31T09:42:47.903 回答