struts2中组合框的隐藏和显示问题

发布于 2024-07-19 08:09:10 字数 156 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

囚你心 2024-07-26 08:09:10

你想用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();

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