我正在使用 PHP 表单生成器类 v3.1 http://code.google.com/p/php-form-b uilder-class/
我正在尝试创建一个动态表单
$options = array("Amount", "Reset Password");
$form->addElement(new Element\Radio("Command Type to Employee : ", "type", $options));
$form->addElement(new Element\TextBox("Amount :", "amount"));
$form->addElement(new Element\TextBox("New Password:", "password"));
当我选择“金额”单选按钮时,“金额”文本字段应显示和
当我选择“重置密码”单选按钮时,应显示“密码”文本字段。
任何人都可以帮助我解决它。提前致谢。