JSP基本语法
JSP注释

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP注释例子</title>
</head>
<body>
<!-- 该JSP注释可以在浏览器文件中看到 -->
<br/>
<center>
<table>
<tr>
<th>
<b>JSP注释</b>
</th>
</tr>
</table>
</center>
<table>
<tr>
<th>
<b>JSP注释</b>
</th>
</tr>
</table>
<table align="right">
<tr>
<th>
<b>JSP注释</b>
</th>
</tr>
</table>
<%--该JSP注释无法在浏览器中看到 --%>
<%
%>
</body>
</html>
运行结果:

浏览器文件:

解释:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP注释例子</title>
</head>
<body>
<!-- 该JSP注释可以在浏览器文件中看到 -->
<br/><<!-- 换行 -->
<center><!-- 文本居中 -->
<table><!-- 表格 -->
<tr><!-- 表格行 -->
<th><!-- 表头 -->
<b>JSP注释</b>
</th>
</tr>
</table>
</center>
<table>
<tr>
<th>
<b>JSP注释</b>
</th>
</tr>
</table>
<table align="right">
<tr>
<th>
<b>JSP注释</b>
</th>
</tr>
</table>
<%--该JSP注释无法在浏览器中看到 --%>
<%
%>
</body>
</html>