在 zend 表单中创建 html 元素

发布于 2024-11-20 00:37:31 字数 1126 浏览 3 评论 0原文

我想将这个完整的代码翻译成 zend 形式,其中包含所有 id、html 图像元素、类、跨度。一切。我发现很难添加图像并根据 div 和 span 对元素进行分组。 如果有人能帮助我,我将不胜感激。谢谢。

<form method="get" action="/search" name="searchForm" id="searchForm">
<div class="logo">
    <a href="http://trial.com" title="Trial" name="trialLogo">
    <img width="205" height="40" alt="Trial Search" src="..image/logo.png">
    </a>
</div>
<input type="hidden" value="/Listing" name="ref_uri">
<div class="inputBlock">
    <span class="inputWrapper"><input type="text" class="labelMagic fieldHelpText" tabindex="3" id="what" name="what" autocomplete="off"><input type="hidden" name="listingId"></span>
</div>
<div class="inputBlock">
    <span class="inputWrapper"><input type="text" autocomplete="off" value="Location" class="labelMagic" tabindex="4" id="where" name="where"><input type="hidden" name="geoId"></span>
</div>
<div class="submitWrapper"><button class="goButton" tabindex="5" name="go" type="submit">Go!</button>
</div>
</form>

I will like to translate this full code into a zend form with all the ids, html image elements, the classes, the spans. Everything. Am finding it difficult to add the image and to group the elements accordint to the divs and spans.
I will be grateful if anyone could help me. Thank you.

<form method="get" action="/search" name="searchForm" id="searchForm">
<div class="logo">
    <a href="http://trial.com" title="Trial" name="trialLogo">
    <img width="205" height="40" alt="Trial Search" src="..image/logo.png">
    </a>
</div>
<input type="hidden" value="/Listing" name="ref_uri">
<div class="inputBlock">
    <span class="inputWrapper"><input type="text" class="labelMagic fieldHelpText" tabindex="3" id="what" name="what" autocomplete="off"><input type="hidden" name="listingId"></span>
</div>
<div class="inputBlock">
    <span class="inputWrapper"><input type="text" autocomplete="off" value="Location" class="labelMagic" tabindex="4" id="where" name="where"><input type="hidden" name="geoId"></span>
</div>
<div class="submitWrapper"><button class="goButton" tabindex="5" name="go" type="submit">Go!</button>
</div>
</form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甚是思念 2024-11-27 00:37:31

您当然可以使用配置的 HtmlTag 的集合装饰器来执行所有这些包装,包括在所有这些 div 和 span 上设置属性。

但也许更简单的是简单地使用 ViewScript 表单的装饰器。这篇MWOP 开发区文章<中有一个很好的例子/a>.

You could certainly employ a collection of configured HtmlTag decorators to perform all this wrapping, including setting the attributes on all these divs and spans.

But perhaps easier would be to simply employ a ViewScript decorator for the form. A good example appears on this MWOP Dev Zone article.

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