struts2:在复选框上单击控件转到 url 标记中编写的操作,例如

发布于 2024-08-05 05:30:55 字数 877 浏览 4 评论 0原文

单击锚标记链接“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白龙吟 2024-08-12 05:30:55

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文