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

更新于:2019-07-30

7K+次浏览

开启您的职业

通过完成课程获得认证

立即开始
广告