对于JSP页面中的注释,能够在客户端结果页面查看源文件(或源代码)时隐藏的写法是:
A: <;!-- comments -->;
B: <;%-- comments --%>;
C: //comments
D: /*comments*/
A: <;!-- comments -->;
B: <;%-- comments --%>;
C: //comments
D: /*comments*/
举一反三
- 以下哪些属于正确的Python注释方式? A: //comments B: %comments C: D: comments E: '''comments'''
- 下列选项中, 不是Java有效注释的是() A: //Using comments is a good habit. B: /Using comments is a good habit. C: /**Using comments is a good habit.*/ D: /*Using comments is a good habit.*/
- 以下( )是JSP中正确的注释。 A: %--comments--%>真正的注释 B: % //comments % C: 会写在页面当中 D: JAVA中的单行和多行注释
- JSP隐藏注释的内容在客户端的运行结果页面看不见,但是在查看源文件时却可以看到。
- _______________ specify a region of source code with a start delimiter and an end delimiter and the region is allowed to span multiple lines. A: Region comments B: Tailing comments C: Line comments D: Block comments