1

我目前正在创建一个 drupal 7 模块。

我有一个文本字段:

$form['gestionvideos_videos']['input'] = array(
        '#type' => 'textfield',
        '#prefix' => '<div id="customSearch">',
        '#suffix' => '</div>',
        '#attributes' => array('onkeyup' => 'search();'),
      );

我想在它前面放一个图像,并将它们都对齐在我的容器的右侧。我不知道我该怎么做?

谢谢你的帮助

4

1 回答 1

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();'),
  );
于 2013-08-25T10:52:24.743 回答