如何显示Struts 场地?
我有一个带有 Struts
字段的 JSP,我想在生成的 HTML 中向最终用户显示它。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个带有 Struts
字段的 JSP,我想在生成的 HTML 中向最终用户显示它。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您没有提供有关您到底要做什么的详细信息,但我假设您有一个
想要将其更改为类似的
字段,如果是这种情况,您可以使用 JQuery 来修改该字段的类型,甚至用隐藏字段的值创建一个新字段。也许这可以帮助您使用 jQuery 更改输入字段的类型
如果您向我提供更多详细信息,我可能可以提供更多帮助。
编辑: Struts 隐藏标记呈现为 元素(您可以浏览生成的 html 代码来亲自查看),因此您确实可以使用 JQuery 来显示它。假设您的隐藏元素的 id 是“hiddenElement”,您可以
在 JavaScript 中使用它来获取其值并在您希望的任何位置显示它。您可以使用 JQuery 做很多有趣的事情,因此您可以阅读文档以获取有关如何使用它的更多想法。
You're not giving many details on what exactly you are trying to do but I am assuming that you have a field
which you would like to change to something like
If this is the case you can use JQuery to modify the type of the field, or even create a new field with the hidden field's value. Maybe this can help you change type of input field with jQuery
I might be able to help more if you give me some more details.
Edit: The Struts hidden tag gets rendered as an <input type="hidden"> element (you can browse the resulting html code to see that for yourself), so you can indeed use JQuery to display it. Assuming your hidden element's id is "hiddenElement" you can use
in your javascript to get its value and display it wherever you wish. There are a lot of interesting things you can do with JQuery, so you can read the documentation to get a few more ideas on how to use it.
(使用 Struts 1.x)
如果您希望显示的隐藏元素仍然可供表单访问,您可以使用 write 属性(请参阅 struts 文档 ):
这样,您的元素将可见,但仍可从表单访问。
(using Struts 1.x)
If you want your hidden elemnt to be displayed be still be accessible for your form you could use the write attribute ( see struts documentation ):
That way, your element will be visible but still accessible from your form.
您可以随时更改此设置(在 Struts 中):
改为
OR
You can always change this (in Struts):
To
OR