评论注释标记(嵌套注释)

时间:2012-10-21 14:51:13

标签: html

如何轻松评论和取消注释包含一些评论的大量HTML标记?

<body>
a lot of markups
 <!-- comment -->
a lot of markups
 <!-- comment -->
a lot of markups
</body>

以下内容无法正常工作(关闭 - &gt;停止评论部分):

<body>
  <!-- 
    a lot of markups
     <!-- comment -->
    a lot of markups
     <!-- comment -->
    a lot of markups
   -->
</body>

有没有替代方法?

3 个答案:

答案 0 :(得分:4)

如果评论区域中没有</style>*/标记,请使用:

<style>
/*
comment
*/
</style>

如果评论区域中没有</script>*/标记,请使用:

<script>
/*
comment
*/
</script>

答案 1 :(得分:3)

不幸的是,结束-->将停止评论部分。

您无法在html - http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.4

中原生地嵌套评论

我所做的(虽然它没有完全“自动化”阻止)是在任何包含的评论中添加/,它只是更容易进行查找&amp;如果我想把它们拉出一个部分,请更换:

<div>
  <!-- 
    blah
    <!-- Blah --/>
    more blahs
  -->
</div>

答案 2 :(得分:1)

这不能用HTML完成。就像你不能用C,C ++或Java嵌套多行注释一样。