Struts2 使用 JavaScript 选择标签添加/删除值
我想在 struts2 中使用 javascript 添加/删除列表框中的值。 我怎么能这么做呢?
<s:select label="Select Month"
name="monthname"
headerKey="1"
headerValue="-- Please Select --"
list="#{'01':'January','02':'February','03':'March','04':'April',
'05':'May','06':'June','07':'July','08':'August','09':'September','10':
'October','11':'November','12':'December'}"
/>
假设我想从列表中删除一月或通过 struts2 中的 javascript 在列表中添加新月份。 我将如何实施它?
提前致谢。
I wanted to add/remove values from the list box using javascript in struts2.
How could I do that?
<s:select label="Select Month"
name="monthname"
headerKey="1"
headerValue="-- Please Select --"
list="#{'01':'January','02':'February','03':'March','04':'April',
'05':'May','06':'June','07':'July','08':'August','09':'September','10':
'October','11':'November','12':'December'}"
/>
Let's say I wanted to remove January from the list or add new month in list by javascript in struts2. how do I will implement it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Struts2与此无关。
我建议您查看 jQuery,因为它使这变得微不足道:
参见示例: http://jsbin.com/ajoqa
Struts2 has nothing to do with it.
I recommend you look at jQuery, because it makes this trivial:
See example: http://jsbin.com/ajoqa