终于解决出来啦!!!嘎嘎嘎嘎~~~
只需要在td标签里面嵌套上a标签就能实现啦!
这里主要看一下功能,页面直接使用的白板~
html页面的具体代码如下(将超链接标签a的样式进行了美化):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>主界面</title>
</head>
<style>
a{
color: black;
text-decoration: none;
}
</style>
<body>
<center>
<table border="1">
<tr>
<th>学生编号</th>
<th>学生姓名</th>
<th>学生年龄</th>
<th>学生家乡</th>
</tr>
<tr th:each="l:${list}">
<td th:text="${l.getId()}"></td>
<td>
<a th:href="@{'/getOne/'+${l.getId()}}" th:text="${l.getName()}"></a>
</td>
<td th:text="${l.getAge()}"></td>
<td th:text="${l.getJia()}"></td>
</tr>
</table>
</center>
</body>
</html>
好吧,不得不承认,我之前好像就是这里过不去,给自己整崩溃了,有亿点心酸~
标签:Springboot,嘎嘎,标签,学生,跳转,页面 From: https://www.cnblogs.com/liuzijin/p/17741098.html