在我的表单中,我生成了生日字段:
{{form_widget(form.birthdate) }}
生成以下html:
<div id="fos_user_registration_form_birthdate">
<select id="fos_user_registration_form_birthdate_month" name="fos_user_registration_form[birthdate][month]">
<select id="fos_user_registration_form_birthdate_day" name="fos_user_registration_form[birthdate][day]">
,
<select id="fos_user_registration_form_birthdate_year" name="fos_user_registration_form[birthdate][year]">
</div>
我想为选择添加一个类以自定义它们的样式。我怎样才能做到这一点?
PS:如果我添加
'attr' => array('class' => 'select-style'),
该类归因于<div id="fos_user_registration_form_birthdate">
,而不是选择