html 注释
在客户端显示一个注释.
jsp 语法
<!-- comment [ <%= expression %> ] -->
例子 1
<!-- this file displays the user login screen -->
在客户端的html源代码中产生和上面一样的数据:
<!-- this file displays the user login screen -->
例子 2
<!-- this page was loaded on <%= (new java.util.date()).tolocalestring() %> -->
在客户端的html源代码中显示为:
<!-- this page was loaded on january 1, 2000 -->
描述\r
这种注释和html中很像,也就是它可以在"查看源代码\"中看到.
唯一有些不同的就是,你可以在这个注释中用表达式(例子2所示).这个表达示是不定的,由页面不同而不同,你能够使用各种表达式,只要是合法的就行。更多的请看表达式
隐藏注释
写在jsp程序中,但不是发给客户。
jsp 语法
<%-- comment --%>
例子:
<%@ page language="java" %>
<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>
描述\r
用隐藏注释标记的字符会在jsp编译时被忽略掉。这个注释在你希望隐藏或注释你的jsp程序时是很有用的。jsp编译器不是会对<%--and--%>之间的语句进行编译的,它不会显示在客户的浏览器中,也不会在源代码中看到