我目前正在尝试将HTML类添加到.tag文件中的span标记。目前,当我这样做时,它几乎打破了我页面上的所有内容。想知道这是否可以通过一些特殊的格式化?
<c:choose>
<%-- If the author has a slug, assume that they should have an author page --%>
<c:when test="${not empty element.slug}">
<c:set var="formatted_credit" value="${formatted_credit}<a href=\"/author/${element.slug}/\"><span>${byline}</span></a><span>${authorBeat}</span>${!status.last ? ', ' : ''}" />
</c:when>
<%-- Otherwise just show the authors name --%>
<c:otherwise>
<c:set var="formatted_credit" value="${formatted_credit}<span>${byline}</span><span>${authorBeat}</span>${!status.last ? ', ' : ''}" />
</c:otherwise>
</c:choose>
我试图在我的$ {authorBeat}跨度中添加(class =&#34; author-beat&#34;), 但正如我所说,它带来了许多错误。