Code/Servlet & JSP
JSP 주석
초롱스쿨
2019. 6. 20. 15:40
반응형
jsp 문법
- html 주석 : <!--주석--> -> 소스보기에서 보면 뜸
- jsp 주석 : <%-- 주석--%> -> 소스보기에서 보면 안뜸
- java 주석 : //주석 OR /*주석 */
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<!-- html 주석 -->
주석 테스트
<%--jsp 주석 --%>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
|
반응형