<c:forEach items="${files}" var="file"> <tr> <td>${file.name}</td> <td>${file.size}</td> <td> <a href="/cloud/download?path=${file.path}">下载</a> <button type="button" onclick="deleteFile('${file.path}')">删除</button> </td> </tr> </c:forEach>修改为jquery格式
时间: 2023-06-12 18:07:08 浏览: 161
<c:forEach>/jstl-1.2
$(function() {
$.each(${files}, function(index, file) {
var row = "<tr><td>" + file.name + "</td><td>" + file.size + "</td><td><a href='/cloud/download?path=" + file.path + "'>下载</a><button type='button' onclick='deleteFile('" + file.path + "')'>删除</button></td></tr>";
$("#fileTable").append(row);
});
});
其中 #fileTable 是你的文件列表所在的 table 的 id。
阅读全文