行之间的超链接
hyperlink in between the line
如何在 Vaadin 的标签中放置给定单词的超链接。
示例:
Please upload a ***gene annotation*** file:
在上面的标签中,"gene annotation" 将是一个超链接,点击它会带您到网站或本地文件。
我知道如何使用 "link",但不知道如何将它合并到 sentence/label
另一个例子:
https://vaadin.com/docs/-/part/framework/components/components-link.html
页面中的所有蓝色超链接。
您可以在这样的标签中输入 HTML。
addComponent(new Label("Please upload a <a href='/'>gene annotation</a> file:",ContentMode.HTML));
如何在 Vaadin 的标签中放置给定单词的超链接。 示例:
Please upload a ***gene annotation*** file:
在上面的标签中,"gene annotation" 将是一个超链接,点击它会带您到网站或本地文件。
我知道如何使用 "link",但不知道如何将它合并到 sentence/label
另一个例子:
https://vaadin.com/docs/-/part/framework/components/components-link.html
页面中的所有蓝色超链接。
您可以在这样的标签中输入 HTML。
addComponent(new Label("Please upload a <a href='/'>gene annotation</a> file:",ContentMode.HTML));