web-inf 目录下的jsp怎么引用外部文件:js,css等

liusure0 2012-09-14

web-inf是受保护的,不能直接访问

下面是解决方法

<c:setvalue="${pageContext.request.contextPath}"var="path"scope="page"/>

<scripttype="text/javascript"src="${path}/js/jquery-1.8.1.min.js"></script>

<scripttype="text/javascript"src="${path}/js/jquery.datepick.js"></script>

<scripttype="text/javascript"src="${path}/js/jquery.datepick-zh-CN.js"></script>

<linktype="text/css"href="${path}/css/smoothness.datepick.css"rel="stylesheet">

ok了。。

相关推荐

香帅 / 0评论 2012-11-12