我正在尝试将 display:none 属性设置为 Zend_Element_Checkbox。我设法隐藏了复选框本身。不幸的是,标签仍然显示。
这是我的代码:
$this->addElement('Select', 'junior_accounts', array(
'label' => 'Junior (15yrs & under)',
'multiOptions' => $personNumberList,
'tabindex' => $tabIndex++,
));
$this->getElement('junior_accounts')->setAttribs(array('style' => 'display: none'));
是否有任何编程方法可以做到这一点,或者我需要设置元素的类并添加适当的 CSS 定义?
谢谢!