我正在使用Yii2构建应用程序.我使用Yii2提供的Html Helper生成下拉列表:
= Html::dropDownList('food', $food_id, $foodList, ['id'=>'food-select']); ?>
其中$food_id是默认选择的选项,$foodList是一个包含表示选项值和文本的键值对的数组.
它工作得很好,但我需要在我的选项中添加一个html-markup(data-food =“…”).像这样的东西:
Apple
这可能使用Html :: dropDownList()方法吗?无论如何要做到这一点?
解决方法:
您可以使用$options数组的options参数,如下所示:
$food_list = [1 => 'Apple', 2 => 'Banana', 4 => 'Orange']; //let's assume
= Html::dropDownList('food', $food_id, $food_list, [
'id'=>'food-select',
'options' => [
1 => ['data-food'=>'apple-info'], //index must be same as the option value
2 => ['data-food'=>'banana-info'],
4 => ['data-food'=>'orange-info']
]
]);
?>
下拉列表后的输出 –
Apple
Banana
Orange
options: array, the attributes for the select option tags. The array
keys must be valid option values, and the array values are the extra
attributes for the corresponding option tags.
标签:php,yii2,html
来源: https://codeday.me/bug/20190527/1165031.html