Zend链接按钮

时间:2014-03-25 07:13:05

标签: html zend-framework

如何创建指向特定操作的链接,尝试下面的方法,但它无法正常工作,请记住我还有一个文件夹,计算控制器,admim / controller / action

<button type="button"><a href="<?php echo $this->url(array('controller' =>'smme', 'action' => 'client'))?>">Previous</a></button>

提前致谢

1 个答案:

答案 0 :(得分:1)

例如,您可以这样做:

$button = new Zend_Form_Element_button('button');
$button->setAttrib('id', 'bouton');
$button->setLabel('Previous');
$button->setAttrib('onClick', "parent.location='" . Zend_Controller_Front::getInstance()->getBaseUrl() .'/smme/client' ."'");