我目前正在创建一个drupal 7模块。
我有一个文本字段:
$form['gestionvideos_videos']['input'] = array(
'#type' => 'textfield',
'#prefix' => '<div id="customSearch">',
'#suffix' => '</div>',
'#attributes' => array('onkeyup' => 'search();'),
);
我想在它前面放一个图像,并将它们对齐在我的容器右侧。我不知道我怎么能这样做?
感谢您的帮助
答案 0 :(得分:2)
$form['gestionvideos_videos']['input'] = array(
'#type' => 'textfield',
'#prefix' => '<img src="/image.jpg" align="left" width="20px" height="20px"/><div id="customSearch">',
'#suffix' => '</div>',
'#attributes' => array('onkeyup' => 'search();'),
);