我有个人资料页面,其中包含了母版页welcome.jsp
。当我转到配置文件页面时,欢迎页面模板的CSS运行正常但是当我更新用户时,用户已正确更新并且requestDispatcher
运行正常,但welcome.jsp
的CSS不是运行正常
代码:profile.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Profile Page</title>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//malsup.github.com/jquery.form.js"></script>
<script>
<jquery code>
</script>
</head>
<body>
<%@ include file="welcome.jsp"%>
<center><h1>User Profile</h1></center><br><br>
<form action="/devilmaycry/register?action=updateuser" method="post">
<html code>
</form>
</body>
</html>
`request dispatcher code`
rd=req.getRequestDispatcher("/Register/profile.jsp");
rd.include(req, res);
pw.println("<h3>Record Updated !!!<h3>");
有人可以告诉我为什么CSS被禁用
由于声誉低,无法发布图片:(
答案 0 :(得分:0)
我给CSS文件的路径是relative
,所以当requestDispatcher运行时,它改变了目录,所以相对路径不起作用
分辨率 - &gt;总是尝试将absolute
路径提供给外部文件(.css,.jsp等)