在struts中如何设置html:hidden的id属性
我想将隐藏输入放入我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: