html – 评论评论标记(嵌套评论)

前端之家收集整理的这篇文章主要介绍了html – 评论评论标记(嵌套评论)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何轻松评论和取消注释包含一些注释的大量 HTML标记
<body>
a lot of markups
 <!-- comment -->
a lot of markups
 <!-- comment -->
a lot of markups
</body>

以下内容无法正常工作(关闭 – >停止评论部分):

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

有没有替代方法

解决方法

如果你没有< / style>和评论区域中的* / tag使用:
<style>
/*
comment
*/
</style>

如果你没有< / script>和评论区域中的* / tag使用:

<script>
/*
comment
*/
</script>
原文链接:https://www.f2er.com/html/228141.html

猜你在找的HTML相关文章