usecomment.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 + -
显示快捷键?