读书人

struts2 action转跳到jsp页面css失灵

发布时间: 2012-07-08 17:43:43 作者: rapoo

struts2 action转跳到jsp页面css失效
页面转跳失效问题肯定是路径的问题。建议改相对路径为绝对路径

String path = request.getContextPath();
String basePase = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

<link rel="stylesheet" type="text/css" href="<%=basePath%>+相对路径/main.css">

读书人网 >CSS

热点推荐