Zend Form_element 内部或附加到包含文本的 html 标签
在 Zend_Form 中,是否可以使用装饰器在元素前面添加一对包含文本的 html 标签?如何实现?
例如:
<div>My text inside html tags prepended..</div><input type='text'>
编辑:
如果我想将表单元素放置在一对仍包含文本的 html 标签中该怎么办?
前任。
<div>
This div is containing both my custom text and my form element:
<input type='text'>
</div>
谢谢卢卡
In Zend_Form is it possible to prepend an element with a pair of html tags containing text using decorators?How?
Ex:
<div>My text inside html tags prepended..</div><input type='text'>
EDITED:
And what if I want to place a form element in a pair of html tags still containing text?
Ex.
<div>
This div is containing both my custom text and my form element:
<input type='text'>
</div>
thanks
Luca
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
如果需要,您也可以使用标签。
如果需要,您也可以使用装饰器使用的 HtmlTag 帮助器,并将位置设置为 PREPEND。
编辑
Just use
You can also use a label if you want.
If you need you can use HtmlTag helper to be used by your decorator also, and set the position to be PREPEND.
Edit