我有一种情况:我就是不知道如何将类添加到一些元框中<我读了这些帖子from here, 我尝试了这个解决方案,但它并没有按我想要的那样工作。有没有办法将类(在CSS中自定义)添加到元框中
例如,在这种情况下:
array(
\'label\' => \'a name\',
\'desc\' => \'description\',
\'id\' => \'id_x\',
\'type\' => \'select\',
\'options\' => array(\'Bad\', \'Good\', \'Excellent\'), /* HERE I WANT A CLASS FOR EACH THIS GUYS (to customize them in CSS) */
\'std\' => "
),
我希望HTML如下所示:
<span class="bad">Bad</span>
<span class="good">Good</span>
<span class="excellent">Excellent</span>