gpt4 book ai didi

zend-framework2 - ZF2 表单中的按钮内容

转载 作者:行者123 更新时间:2023-12-01 06:57:59 25 4
gpt4 key购买 nike

如何编辑 Button 元素(ZF2 表单)的按钮内容?
我可以设置标签,但我想在其中插入一些 html 代码。

    $this->add(array(
'type' => 'Button',
'name' => 'submit',
'options' => array(
'label' => 'Modifica',
),
'attributes' => array(
'type' => 'submit',
'class' => 'btn btn-warning'
)
));

谢谢

最佳答案

您可以简单地使用 disable_html_escape 标签的选项。
这个对我有用。

$this->add(array(
'type' => 'Button',
'name' => 'submit',
'options' => array(
'label' => '<i class="icon icon-foo"></i> Submit',
'label_options' => array(
'disable_html_escape' => true,
)
),
'attributes' => array(
'type' => 'submit',
'class' => 'btn btn-success'
)
));

关于zend-framework2 - ZF2 表单中的按钮内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21776915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com