thymeleaf超链接语法
时间: 2024-01-19 12:14:51 浏览: 82
thymeleaf语法入门
Thymeleaf中超链接的语法如下:
```html
<a th:href="@{/url/path}">Link Text</a>
```
其中,`@{/url/path}`表示相对于应用程序根目录的URL路径。
如果要在新窗口中打开链接,可以添加`target="_blank"`属性:
```html
<a th:href="@{/url/path}" target="_blank">Link Text</a>
```
阅读全文