2012-05-04 56 views

回答

0

您可以通过添加hook_page_alter一个div周围的形式,例如:

function hook_page_alter(&$page) { 
    // Add help text to the user login block. 
    $page['content']['...']['form'] = array(
    '#prefix' => '<div>', 
    '#suffix' => '</div>', 
); 
} 
相关问题