HTML註釋(輸出註釋):指在客戶端查看源代碼時能看見註釋。例如,html
<!-- this is an html comment.it will show up int the response. -->jsp
JSP頁註釋(隱藏註釋):指註釋雖然寫在JSP程序中,但不會發送給客戶,所以在客戶端查看源代碼時不能看見註釋。這樣的註釋在JSP編譯時被忽略掉。this
<%--this is a JSP comment.it will only be seen in jsp code--%>code
Java註釋:只能出如今Java代碼區中,不容許直接出如今頁面中。//單行註釋 /*多行註釋*/htm