JSP取得绝对路径
<!--使用绝对路径的方式引入CSS文件--> <link rel="stylesheet" href="${pageContext.request.contextPath}/themes/default/css/ueditor.css" type="text/css"/> <!--使用绝对路径的方式引入JavaScript脚本--> <script type="text/javascript" src="${pageContext.request.contextPath}/ueditor1_3_6-gbk-jsp/ueditor.config.js"></script>
<!-- 来自啸月苍狼的博客,借此为动力,高级工程师,哥来了 --> <%-- 使用<%=request.getContextPath()%>和使用${pageContext.request.contextPath}达到同样的效果 --%>