如何选择单选按钮取决于jsp和struts中的条件
我有 jsp 页面,其中包含以下代码片段...它将显示两个单选按钮,例如汽车和自行车
<bean:message key="label.vehicleType"/> : <html:radio value="Bike" property="vehicleType" idname="vehicleType" name="vehicleType">Bike</html:radio>
<html:radio value="Car" property="vehicleType" idname="vehicleType" name="vehicleType">Car</html:radio><br/>
如果我选择名为汽车的单选按钮,那么它应该显示另外两个单选按钮,例如 civic 和 BMW。或等等。
如何使用 struts 选项卡库的
标签实现此目的。
我是 struts 标签库和 javascript 的新手。
提前致谢。
i have jsp page with following code snippest...and it will show two radio buttons like car and bike
<bean:message key="label.vehicleType"/> : <html:radio value="Bike" property="vehicleType" idname="vehicleType" name="vehicleType">Bike</html:radio>
<html:radio value="Car" property="vehicleType" idname="vehicleType" name="vehicleType">Car</html:radio><br/>
If I select a radio button named as a car then it should show another two radio button like civic and BMW. or etc.
How can I achieve this with <logic:equal>
tag of struts tab library.
I am new with struts tag library and javascript.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这里是没有用的。为此你需要 JavaScript。像这样,提示:
radio这里可以使用
的onchange
事件。<logic:equal>
will be of no avail here. You need JavaScript for that. Go like this,Hints:
radio
'sonchange
event can be used here.如果您使用的是 struts 2.x
您可以使用
If you are using struts 2.x
you can use
你不能。
每次使用 JSP 标记(Struts Tag 扩展 JSPTag)时,标记都会从 servlet 请求或会话中读取数据。如果您想使用
标记,则必须将单选选项发送到 Struts Action,检索要填充的数据列表,然后返回到转发和显示数据。如果没有,请使用 JavaScript。您必须检查表单的属性是否已选中,并启用包含您希望的汽车列表的
div
。这意味着您必须事先加载所有相关数据并在onload()
上隐藏您的div
。希望这有帮助。
You can't.
Everytime you use a JSP tag (Struts Tag extends JSPTag), the tags reads data from the servlet request or session. If you want to use the
<logic:equal>
tag, you will have to send your radio selection to your Struts Action, retrieve a list of data to populate, and retrn back to your forward and display the data.If not, use Javascript. You will have to check if the property of your form is checked and enable a
div
that contains the list of cars that you so wish. This means that you will have to load all your relevant data beforehand and hide yourdiv
ononload()
.Hope this helps.