fn:escapeXml() 函数转义可以解释为 XML 标记的字符。语法fn:escapeXml() 函数具有以下语法:java.lang.String escapeXml(java.lang.String)示例以下示例说明 fn:escapeXml() 函数的功能:使用 JSTL 函数使用 escapeXml() 函数:字符串 (1) : ${fn:escapeXml(string1)} 字符串 (2) : ${fn:escapeXml(string2)}不使用 escapeXml() 函数:字符串 (1) : ${string1} 字符串 (2) : ${string2}您将收到以下结果:使用 escapeXml() 函数:字符串 (1) : This is first String. 字符串 (2) : This is second String. 不使用 escapeXml() 函数:字符串 (1) : This is first String. 字符串 (2) : This is second String.