我正在尝试使用简单的表单添加名称和颜色的活动。
所以我想制作一个带有一些颜色数组的列表,现在它正在工作我有颜色的名称,但我想要的是做类似的东西:
<select id="a" name="select" style="width: 10%;">
<option style="background-color: FF0;" value="FF0"></option>
<option style="background-color: F0F;" value="F0F"></option>
<option style="background-color: 0FF;" value="0FF"></option>
</select>
如何添加“style =”background-color:“mycolor;”我的表格?
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('name');
$listColor;
for($r = 0;$r < 255; $r = $r + 120)
{
for($g = 0;$g < 255; $g = $g + 120)
{
for($b = 0;$b < 255; $b = $b + 120)
{
$string = dechex($r).dechex($g).dechex($b);
$listColor[$string] = $string;
}
}
}
$builder->add('color', 'choice', array(
'choices' => $listColor));
}
在数组中有一些选项吗?把一些HTML?
我发现最接近它的是在你的表单上添加一个类名,以便在它之后用css做一些事情......
{{ form_widget(form, { 'attr': {'class': 'myclass'}}) }}
Thanx;)
RAFF
答案 0 :(得分:0)
您可以使用jquery来解决此问题,请尝试以下示例:
JSBIN "style="background-color:"mycolor;"
$(document).ready(function(){
$("#a option").each(function(index,value){
var option = $(this);
var bc= 'background-color:'+option.val()+';';
option.attr('style',bc);
});
});