jQuery遍历class
$(function () {
$(".files").each(function () {
let id = $(this).children("td").children("span").html();
let href = $(this).find("a").eq(0).attr("href");
$(this).find("a").eq(0).attr("href", href + "?fileId=" + id);
})
});