天天看点

解决css在jsp加载不上的方法

关键字:jsp加载不上 css 加载

如果以下四种方法都无法在jsp上加载css:

<link rel="stylesheet" href="css/login.css" target="_blank" rel="external nofollow" >

<link rel="stylesheet" href="/css/login.css" target="_blank" rel="external nofollow" >

<link rel="stylesheet" href="./css/login.css" target="_blank" rel="external nofollow" >

<link rel="stylesheet" href="../css/login.css" target="_blank" rel="external nofollow" >

不妨试试下面这一种方法:

<link [color=red]href="<%= request.getContextPath()%>/css/login.css" target="_blank" rel="external nofollow" [/color] type="text/css" rel="stylesheet">

清风夜影寒:http://qfyyh.iteye.com