728x90
반응형
JSP파일에서
- JS 파일 Import 하기
- CSS 파일 Import 하기
- JSP 파일 Import 하기
JS 파일 Import 하기
1
2
3
4
5
|
js 파일 Import 방법 1
<script src="<c:url value='/js파일경로'/>" type="text/javascript"></script>
js 파일 Import 방법 2
<script src="/js파일경로" type="text/javascript"></script>
|
CSS 파일 Import 하기
1
2
3
4
5
|
Css 파일 Import 방법 1
<link type="text/css" rel="stylesheet" href="<c:url value='/css파일경로'/>" ></link>
Css 파일 Import 방법 2
<link type="text/css" rel="stylesheet" href="/css파일경로" ></link>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
JSP파일에서 다른 JSP 파일 Import 하기
1
2
3
|
다른 JSP 파일 Import 방법
<%@include file="/WEB-INF/jsp파일경로"%>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
728x90
반응형
'Web > JSP' 카테고리의 다른 글
[JSP] JSTL forEach Example (0) | 2019.07.07 |
---|---|
[JSP] JSTL if, when, otherwise Example (1) | 2019.07.07 |
[JSP] JSTL Tag 사용 Error (0) | 2019.07.07 |