php – 如何使用Zend表单描述添加自定义HTML标记

前端之家收集整理的这篇文章主要介绍了php – 如何使用Zend表单描述添加自定义HTML标记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑我想展示

复选框,复选框标签和之后的图像.

如何使用Zend Engine Form创建相同的视图

我尝试如下

$this->addElement(
            'CheckBox',"$key",array(
             'label'=>$value,'checkedValue' => "$key",'uncheckedValue' => '','checked' => true,'disabled' => false,)
        );

     $element = $this->getElement($key);         


       $element->setDecorators(
   array(
     'ViewHelper',array('Label',array('tag' => 'dt','class'=>'hidden')),array('Description',array('escape'=>false,'tag'=>' span')),//escape false because I want html output
    )
   );

     $element->setDescription('<img name="help_'.$key.'" id="help_'.$key.'" src="/application/modules/User/externals/images/what-is-this.gif"/>');

$element->setDescription('<img name="help_'.$key.'" id="help_'.$key.'" src="/application/modules/User/externals/images/what-is-this.gif"/>');

但是显示复选框,描述图像和复选框标签为上标.

请帮忙

$element->getDecorator('Description')->setEscape(false);

这将防止转义描述内容.

原文链接:https://www.f2er.com/php/130710.html

猜你在找的PHP相关文章