Html 文本区内的HREF?

Html 文本区内的HREF?,html,jstl,Html,Jstl,我想在文本框中制作一个hyperklink…这可能吗 这就是我得到的,只是显示为文本: <c:if test="${action == 'update'}"> <%-- Preserve the indentation for this TEXTAREA in order to keep extra whitespace out of it. --% > <TEXTAREA class="textarea_read

我想在文本框中制作一个hyperklink…这可能吗

这就是我得到的,只是显示为文本:

   <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>

---${mcbean.auditable.createdBy.firstName}${mcbean.auditable.createdBy.lastName},
${mcbean.remark}--


不,它不是。文本区域内不能有任何类型的标记

但是,由于您已将textarea标记为
只读
,我猜您将其滥用为显示小部件,而不是从用户获取输入的工具。不要那样做


使用更合适的元素(段落、div等),并设置其样式。您可能需要调整
字体
高度
宽度
溢出
,不,它不是。文本区域内不能有任何类型的标记

但是,由于您已将textarea标记为
只读
,我猜您将其滥用为显示小部件,而不是从用户获取输入的工具。不要那样做

使用更合适的元素(段落、div等),并设置其样式。您可能需要调整
字体
高度
宽度
溢出