如何根据组合框中的选择显示或隐藏 GSP 上的字段
我对 grails 还很陌生,所以我很抱歉问这样的问题。
我有一个可以分为 3 种类型的域,所以我想创建一个组合框,根据用户所做的选择,它将显示一些字段并隐藏其他字段。我怎样才能实现这个目标?
再次感谢并为这个愚蠢的问题感到抱歉。
I'm still new to grails, so I'm really sorry for asking something like this.
I have a domain that could be divided in 3 types, so I'd like to create a combo-box and depending on which selection the user made, it will show some fields and hide others. How can I achieve this?
Thanks again and sorry for this dumb question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上是通常使用 JavaScript 完成的事情。您可以将“更改时”事件处理程序附加到组合框,该组合框将根据需要显示/隐藏适当的元素。
如果您不熟悉如何使用 Javascript 执行此操作,我建议您看一下 jQuery: http://api.jquery.com/change/
This is actually something that is commonly done with JavaScript. You could attach an 'on change' event handler to your combo-box that would show/hide the appropriate elements as needed.
In case you're not familiar with how to do this with Javascript, I'd recommend you take a look at jQuery: http://api.jquery.com/change/