我有一个 drupal 表单,其元素定义如上所示:
'gender' => array(
'#attributes' => array(
'#default_value' => t('Your name'),
'#option' => $tab
'#maxlength' => 255,
'#required' => TRUE,
'#title' => t('gender'),
'#type' => 'select'
),
其中 tab 由 $tab = {'m','F','mf',fm'} 定义。
在模板文件中,我通过以下方式输出元素:
在源代码中我看到:当我重新加载页面时,元素的名称变成了性别XXXX,其中 XXXX 是一个随机数。有人可以帮忙吗