如何将 Attrib 设置为标签而不是 zend 表单中的元素

发布于 2024-11-18 16:06:05 字数 208 浏览 2 评论 0原文

通常我会使用以下内容设置发送元素

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉生梦死 2024-11-25 16:06:05

来自 ZF 文档

$label = $element->getDecorator('label');
$label->setOption('class', 'bob');

From ZF Documentation:

$label = $element->getDecorator('label');
$label->setOption('class', 'bob');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文