Thymeleaf - 图像充当超链接

时间:2018-03-27 12:57:17

标签: image hyperlink thymeleaf

使用Thymeleaf,如何将图像作为超链接?

Thymeleaf Documentation对图片没有任何说明,我尝试使用标准HTML来解决此问题,但以下尝试都没有使我的图片成为活动的超链接。

<a th:href="@{/user/myUser}">
    <img src="../../static/images/image.jpg" alt="logo"/>
</a>

<a href="https://www.w3schools.com">
    <img src="../../static/images/image.jpg" alt="logo"/>
</a>

1 个答案:

答案 0 :(得分:0)

        <a href="/oauth2/authorization/google">
            <img alt="Google Login" title="Google login"
                th:src="@{/images/login-with-google.png}" />
        </a>