在基本HTML中,链接可以具有target="_blank"
属性以强制它在新窗口或选项卡中打开。但是如果我把它放在<a href>
标签中,其中还包含一个th:href
的Thymeleaf,那么Thymeleaf会覆盖整个标签并清除我的target="_blank
。
我考虑过将target="_blank"
添加到每个链接的强力方法,因为它存储在我的数据库中,以便在Thymeleaf写出来时它已经是链接的一部分。但我更倾向于让Thymeleaf在写target="_blank"
标签时写<a>
属性。
答案 0 :(得分:7)
Thymeleaf会覆盖a
标记。使用th:target="_blank"
。