我進口:
JSTL標籤在HTML沒有轉化
xmlns:c="http://java.sun.com/jstl/core"
xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
我的JSTL代碼:
<h:outputLabel value="YESS" >
<fmt:formatNumber value="0.25" type="percent"></fmt:formatNumber>
生成的HTML代碼:
<label>YESS</label>
<fmt:formatNumber value="0.25" type="percent"></fmt:formatNumber>
生成的代碼秀JSTL公司re是在HTML中翻譯的。
但是JSTL「fmt」沒有在HTML中轉換。
的更多信息:
<fmt:ErrorInThisFunctionName value="0.25" type="percent" /> ===> generate an error
- 我在Tomcat 6 工作