当前位置: 代码迷 >> HTML/CSS >> struts2 Action跳转到jsp页面css失效的解决方法
  详细解决方案

struts2 Action跳转到jsp页面css失效的解决方法

热度:21   发布时间:2012-11-06 14:07:00.0
struts2 Action跳转到jsp页面css失效的解决办法
页面转跳失效问题肯定是路径的问题。建议改相对路径为绝对路径

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

<link rel="stylesheet" type="text/css" href="<%=basePath%>相对路径/main.css">
  相关解决方案