想在index.jsp这个文件中引用外部的login.css文件,在index.jsp中加了
<link href="<%=request.getContextPath() %>/css/login.css" rel="stylesheet" type="text/css"/> 也没有用,
百度上说还要在web.xml文件中配置映射,但不知道具体该怎样配置,求大神解答,谢谢~~
2 回答
菜菜菜菜菜菜
TA贡献1条经验 获得超1个赞
只要js和css一起用就好了,web.xml不用配置那些东西,在jsp页面写
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<link rel="stylesheet" href="<%=basePath%>css/index_work.css" type="text/css"></link>
<script type="text/javascript" src="<%=basePath%>js/jquery-1.8.2.min.js"></script>
添加回答
举报
0/150
提交
取消