SelectItem 标签中的 JSF 链接
是否可以在我的
周围设置 ,其中我的链接文本是
项目标签
?
我正在使用普通的太阳组件。
Is it possible to set a <a href />
around my <f:selectItem itemLabel="label" />
where my link text is the itemLabel
?
I'm using the plain sun components.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 HTML 中不可能获得想要的结果。您需要为此添加一段 JavaScript。
其中
bean.getLinks()
返回一个List
,其中包含完整的 URL 作为项目值。如果您希望将链接显示为值和标签,只需使用带有单个参数的SelectItem
构造函数即可。如果您想在视图中对它们进行硬编码,那么您当然可以获取
f:selectItem
:The desired result is not possible in HTML. You'll need to add a shot of JavaScript for this.
Where
bean.getLinks()
returns aList<SelectItem>
with a fullworthy URL as item value. If you want to show the link as both value and label, just use theSelectItem
constructor taking a single argument.If you want to hardcode them in the view, then you can of course grab
f:selectItem
: