我需要将样式和只读属性应用于 drupal 表单的输入元素。我编写了以下代码:
$form['precio'] = array(
'#type' => 'textfield',
'#title' => t('Precio'),
'#default_value' => ''.$precio,
'#size' => 20,
'#required' => TRUE,
'#attributes' => array($inputAtributo => 1),
'#description' => t('Modifica el precio '),
);
并且在 '#attributes' => array($inputAtributo => 1),
在创建表单之前,我检查此输入是否应该是只读的并应用一些样式:
if ($tarifa !='' & $tarifa=='N')
$inputAtributo=" readonly style=\"background: none repeat scroll 0 0 #EAEAEA;\" ";
else
$inputAtributo = "";
这行得通,但我认为它的编码不正确
html代码显示如下:
<input id="edit-precio" class="form-text required" type="text" maxlength="128" size="20" value="258" name="precio" ="1"="" style="background: none repeat scroll 0 0 #EAEAEA;" readonly="">
我怎样才能更好地做到这一点?