[code]
1、在jsp页面中不能通过${list.size}取列表长度,而是
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:out value="${fn:length(list)}"></c:out>
2、js文件的中文在eclipse中变为乱码,引入jsp文件显示也为乱码的解决:
用eclipse打开.js文件,File菜单properties将text file encoding改为utf-8,然后页面引
<script>"text/javascript" language="javascript" [color=red]charset="utf-8"[/color] src="<%=basePath%>examConditionQuery/examConditionQuery.js">
</script>
1、在jsp页面中不能通过${list.size}取列表长度,而是
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:out value="${fn:length(list)}"></c:out>
2、js文件的中文在eclipse中变为乱码,引入jsp文件显示也为乱码的解决:
用eclipse打开.js文件,File菜单properties将text file encoding改为utf-8,然后页面引
<script>"text/javascript" language="javascript" [color=red]charset="utf-8"[/color] src="<%=basePath%>examConditionQuery/examConditionQuery.js">
</script>