【发布时间】:2011-11-10 16:37:12
【问题描述】:
我试图在文本区域框中创建超链接...这可能吗?
这是我得到的,只是显示为文本:
<c:if test="${action == 'update'}">
<%-- Preserve the indentation for this TEXTAREA in order to keep extra whitespace out of it. --% >
<TEXTAREA class="textarea_readonly" readonly="readonly" name="mcRemarkOld" rows="7" cols="100" scrolling="auto">
<c:forEach var="mcbean" items="${form.mcRemarks}">
---${mcbean.auditable.createdBy.firstName} ${mcbean.auditable.createdBy.lastName}, <fmt:formatDate value="${mcbean.auditable.createdDate}" pattern="${date_time_pattern}" />
${mcbean.remark} -- <a href="show.view_hotparts_guidelines?remarkId=${mcbean.id}">${mcbean.remark}</a>
</c:forEach></TEXTAREA><br/>
</c:if>
【问题讨论】: