JSP 注释是什么?
JSP 注释会标记应由 JSP 容器忽略的文本或语句。当你想要隐藏或“注释掉”JSP 页面的一部分时,JSP 注释非常有用。
以下是 JSP 注释的语法 −
<%-- This is JSP comment --%>
以下示例展示了 JSP 注释 −
<html> <head> <title>A Comment Test</title> </head> <body> <h2>A Test of Comments</h2> <%-- This comment will not be visible in the page source --%> </body> </html>
上述代码将生成以下结果 −
A Test of Comments
广告