如何使检票口链接显示为图像?
我正在尝试使检票口链接显示为图像而不是文本。我正在创建一个外部链接,然后将其放置在页面上。
add(new ExternalLink("link", url, "Page name"));
<a wicket:id="link"></a>
我的问题是我无法将图像代替“页面名称”,因为它只会将 html 设置为文本。我还尝试跨越一个 wicket id,它也呈现为文本。有人可以帮忙吗?
I am trying to make a wicket link appear as an image instead of text. I am creating an external link and then placing it on the page.
add(new ExternalLink("link", url, "Page name"));
<a wicket:id="link"></a>
My problem is that I can't put the image in place of "Page name" because it will just set the html as text. I also tried to span a wicket id instead and it also is rendered as text. Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于静态图像:
或者对于动态图像,将图像添加到ExternalLink
For a static image:
Or for a dynamic image add the image to the ExternalLink
对于以编程方式设置图像:
HTML:
Java:
For programatically set image:
HTML:
Java: