Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Spring JSP 中取消转义 html 字符。
<c:out value="${fn:***unescapeHtml***(item.name)}" />
是否有 unescapeHtml 或等价物?
由于我没有找到一个jsp标签来做同样的事情,我不得不求助于javascript方法。这对我来说很有意义,因为我首先使用 javascript 进行转义,并且效果很好。
我已将其放入页面的 $.ready() 中。
$.find(xxxx) { $(this).text((unescape($(this).text()))); }