0

我正在使用 zend 表单来创建表单。我也在为 javascript 使用 mootools。

$this->addElement('radio', 'alone', array(
    'label' => 'Are you going to be taking part with anyone else?',
    'required' => true,
    'onClick' => 'showFields();',
    'multiOptions' => array(
        'yes' => 'Yes',
        'no' => 'No'
    ))
);

目前,如果选择了任何选项,onclick 事件就会起作用。我如何让它工作只是被选中?

4

1 回答 1

1

你可以试试这个...

$this->addElement('radio', 'alone', array(
    'label' => 'Are you going to be taking part with anyone else?',
    'required' => true,
    'onClick' => 'showFields(this);',
    'multiOptions' => array(
        'yes' => 'Yes',
        'no' => 'No'
    ))
);

在你的功能中......

function showFields(elem)
{
    if(elem.value != 'yes')
        return false;

    // rest of the code
}
于 2012-09-05T11:40:01.337 回答