struts2:在复选框上单击控件转到 url 标记中编写的操作,例如
单击锚标记链接“click me”控件将转到
标记中定义的操作,并发送
下定义的所有参数值代码>标签。见下文 -
<s:url id="matchId" action="someAction">
<s:param name="QuotFileName" value="FileName"/>
<s:param name="QuotContentType" value="ContentType"/>
</s:url>
<s:a href="%{ matchId }">click me</s:a>
一切运行良好。 但我想使用复选框即
而不是锚标记即
但是
标记中没有 href 属性...请参阅下面的代码 -
<s:url id="matchId" action="someAction">
<s:param name="QuotFileName" value="FileName"/>
<s:param name="QuotContentType" value="ContentType"/>
</s:url>
<s:checkbox href="%{ matchId }"></s:checkbox>
请建议我应该使用什么来代替 。
On clicking the anchor tag link “click me” control goes to the action defined in <s:url>
tag and sends all the param values defined under <s:url>
tag . See below -
<s:url id="matchId" action="someAction">
<s:param name="QuotFileName" value="FileName"/>
<s:param name="QuotContentType" value="ContentType"/>
</s:url>
<s:a href="%{ matchId }">click me</s:a>
Its all running well.
But I want to do the same thing using checkbox i.e <s:checkbox>
instead of anchor tag i.e <s:a>.
But there is no href attribute in <s:checkbox>
tag… See below code -
<s:url id="matchId" action="someAction">
<s:param name="QuotFileName" value="FileName"/>
<s:param name="QuotContentType" value="ContentType"/>
</s:url>
<s:checkbox href="%{ matchId }"></s:checkbox>
Please suggest what should I use inplace of ‘href ‘attribute of <s:checkbox>.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 onclick 属性来调用一些 Javascript,将 window.location 设置为您想要的任何位置吗?
http://struts.apache.org/2.1.6/docs/checkbox。 html
Can you use the onclick attribute to call some Javascript that sets window.location to whatever you want?
http://struts.apache.org/2.1.6/docs/checkbox.html