usecomment.jsp

来自「jsp-公司管理系统-注册、会员管理等功能」· JSP 代码 · 共 21 行

JSP
21
字号
<html>
<head>
<title>注释测试</title>
</head>
<body>
<!--这是HTML注释 -->
<%--
这个JSP程序用来测试JSP注释符和Java注释符"//"、"/* */".
--%>
//abc<% 
//out.println("this is the first test!"); 
//efg%>
<% 
out.println("this is the second test!"); 
/*
out.println("this is the third test!");
*/
%>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?