我开始使用 Zend 表单,我怎么能有:
<button id="show" type="button">
<img width="18" height="18" alt="Calendar" src="assets/calbtn.gif">
</button>
使用 Zend_Form_Button。
我试过了,但没有用:
$btn = new Zend_Form_Element_Button('show');
$btn->removeDecorator('DtDdWrapper');
$btn->setLabel(' ');
$btn->addDecorator('Label', array('HtmlTag',array('tag'=>'img','placement'=>'append','src'=> 'assets/img.gif')));