mailto:在 JSF 中的 selectOneMenu 中选择的选项上
我想在 jsf 中的 selectOneMenu(dropdown list)
中的选定选项上实现 mailto:
链接,
我该如何实现这个?
I want to implement mailto:
link in jsf on selected option in selectOneMenu(dropdown list)
how can i implement this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以你想最终得到类似的东西
?
这在 HTML 中已经不可能实现,因此 JSF 在这里无法为您做太多事情。最好的选择是使用
模仿下拉菜单以及 JavaScript 和 CSS 的精彩镜头。
或者,如果您可以接受不可样式化的下拉选项(例如,您可以不给它们着色或加下划线,以便它们看起来像链接),您也可以只添加一点 JS 来满足您的需求。
假设项目值已经是带有
mailto:[email protected]< 的字符串/a>
值。So you want to end up with something like
?
That's already not possible in HTML, so JSF can't do much for you here. Your best bet is to mimic a dropdown with
<div><ul><li>
and a good shot of JavaScript and CSS.Alternatively, if you can live with non-styleable dropdown options (you can for example not color or underline them, so that they look like links), you can also just add a little shot of JS to achieve your needs.
Assuming that the item values are already strings with the
mailto:[email protected]
values.