struts2中组合框的隐藏和显示问题
我有一个 jsp 页面,其中有两个组合框和一个 struts 标签单选按钮。 现在,根据单选按钮的值,我必须隐藏一个组合框。 我怎样才能在struts2中实现这一点? 如果这个标签是简单的 HTML,我可以通过隐藏 div 标签轻松完成。 但是struts标签并没有被这个jquery隐藏。
I have a jsp page in which I have two combobox and one radio button of struts tag.
Now depending on the value of radio button I have to hide one combobox .
How can I achieve this in struts2. I can easily do if this tag are simple HTML by hiding a div tag. But struts tag are not hide by this jquery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想用struts2隐藏它吗? 或者通过jquery?
因为这将是完全不同的
如果您试图隐藏 struts2 - 使用标签 - 只需检查单选按钮的值,以及渲染或不渲染。
如果是 jquery,你所要做的就是找到 html 元素 id,比如
($idToHide).hide();
are you trying to hide it by struts2? or by jquery?
Cause this would be totally different
In case you are trying to hide from struts2 - use
<s:if>
tag - just check the value of radio button, and either render or not.In case of jquery all you have to do is find html element id, something like
($idToHide).hide();