Struts 禁用字段
我需要在加载时禁用 jsp 页面上的下拉菜单。但是,如果禁用了 html 元素,则不会发布该元素。我尝试使用与 html 元素具有相同 id 的隐藏元素,但它仍然不会发布该元素。我是使用struts。任何建议将不胜感激。
谢谢 米努
I need to disable a dropdown on jsp page when it loads.However the html element will not be posted if it is disabled.I tried using a hidden element with the same id as the html element it still does not post the element.I am using struts.Any advice would be appreciated.
Thanks
Minu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的方法很好,但您没有使用正确的属性。
name
在请求中发送,而不是id
属性。这是一个关于如何执行此操作的简单示例(将其保存在名为
t.html
的文件中):然后...
当您按提交时,组合的值(已复制到隐藏的字段(当您在加载时禁用组合时)将根据请求发送。
Your approach was good but you didn't use the proper attribute. The
name
is sent on the request not theid
attribute.Here is a simple example on how to do it (save this in a file named
t.html
):and then...
When you press submit, the value of the combo (already copied in the hidden field when you disabled the combo on load) is sent on the request.