如何将 Attrib 设置为标签而不是 zend 表单中的元素
通常我会使用以下内容设置发送元素
$question = new Zend_Form_Element_Text ("question");
$question->setLabel("Question")
->setAttrib('class', 'bob');
这里我已经围绕元素设置了一个类,但是如何为标签设置它呢?
Usually I would set up a send element by using the following
$question = new Zend_Form_Element_Text ("question");
$question->setLabel("Question")
->setAttrib('class', 'bob');
Here I have set a class around an element but how do I set it for the label instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 ZF 文档:
From ZF Documentation: