在struts中如何设置html:hidden的id属性

发布于 2024-11-23 18:00:00 字数 405 浏览 0 评论 0原文

我想将隐藏输入放入我的 html 表单中,并使用以下 struts 标签来实现:

<html:hidden property="currentPage" value="page1"></html:hidden>

呈现此 html:

<input type="hidden" value="page1" name="currentPage">

如何在 html 元素上设置 id 属性?所以我希望 html 呈现如下:

<input type="hidden" value="page1" name="currentPage" id="currentPage">

I want to put a hidden input onto my html form and am doing so with the following struts tag:

<html:hidden property="currentPage" value="page1"></html:hidden>

which renders this html:

<input type="hidden" value="page1" name="currentPage">

How do I set the id property on the html element? So I want the html to be rendered like:

<input type="hidden" value="page1" name="currentPage" id="currentPage">

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

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

发布评论

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

评论(1

森末i 2024-11-30 18:00:00

试试这个:

<html:hidden property="currentPage" value="page1" styleId="currentPage"></html:hidden>

Try this:

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