html中 <div style="padding:30px;"><input type="submit" class="button button-block bg-main text-big input-big" ></div>加一个thymeleaf跳转
时间: 2023-12-05 18:09:23 浏览: 152
SpringBoot+Thymeleaf跳转的简单实例
可以使用th:action属性来实现跳转,示例如下:
<div style="padding:30px;">
<form th:action="@{/your/path}" method="post">
<input type="submit" class="button button-block bg-main text-big input-big">
</form>
</div>
其中,th:action的值为跳转的路径。如果需要使用GET方法跳转,可以将method属性的值设置为"get"。
阅读全文