我有一个自定义表单(从菜单挂钩调用),如下所示:
$items['testform'] = array(
'title' => 'testform',
'page callback' => 'drupal_get_form',
'page arguments' => 'test_form',
'access arguments' => array('access content'),
);
现在在这个使用 Drupal 6 Form API 构建的表单中,我想使用 AHAH 添加“添加更多”字段。
谁能给我一些想法我该怎么做?