如何使用注释使HTML代码处于非活动状态

时间:2010-12-09 00:17:59

标签: html xhtml

我在页面上有一些我不想删除的HTML代码,但在短期内不活动。如何使浏览器忽略页面的某些部分,就像//在某些编程语言中的工作方式一样?

7 个答案:

答案 0 :(得分:35)

观看HTML评论:

<!-- comment -->

http://www.w3.org/TR/html401/intro/sgmltut.html#idx-HTML

删除代码而不删除代码的正确方法当然是使用版本控制,这使您可以恢复过去的旧代码。不要养成在页面中累积注释掉的代码的习惯,这没什么好玩的。 :)

答案 1 :(得分:14)

HTML评论:

<!-- <div> This div will not show </div> -->

See Reference

CSS评论:

/* This style will not apply */

See Reference

JavaScript评论:

// This single line JavaScript code will not execute

/*
   The whole block of JavaScript code will not execute
*/

See Reference

答案 2 :(得分:4)

使用嵌套注释注释块:将内部(块)注释从“ - ”替换为“++”

<!-- *********************************************************************
     * IMPORTANT: To uncomment section
     *            sub inner comments "++" -> "--" & remove this comment
     *********************************************************************
<head>
   <title>My document's title</title> <++! My document's title ++>
   <link rel=stylesheet href="mydoc.css" type="text/css">
</head>

<body>
<++! My document's important HTML stuff ++>
...
...
...
</body>

*********************************************************************
* IMPORTANT: To uncomment section
*            sub inner comments "++" -> "--" & remove this comment
*********************************************************************
-->

因此,最外面的注释忽略了所有“无效”内部(块)注释。

答案 3 :(得分:1)

只需在其周围创建多行注释即可。当你想要它时,只需删除评论标签。

例如,<!-- Stuff to comment out or make inactive -->

答案 4 :(得分:0)

使用:

<!-- This is a comment for an HTML page and it will not display in the browser -->

有关详细信息,我认为 3 On SGML and HTML 可能会对您有所帮助。

答案 5 :(得分:0)

如果您使用Eclipse,则键盘快捷键为 Ctrl + Shift + / 以添加一组代码。要制作注释行或选择代码,请右键单击 - &gt; 来源 - &gt; 添加阻止评论

要删除块注释, Ctrl + Shift + \ 或右键单击 - &gt; 来源 - &gt; 删除阻止评论

答案 6 :(得分:-1)

评论原因:

  1. 暂时注释掉元素而不是删除它们,特别是如果它们未完成的话。
  2. 在实际的HTML文档中写下自己的笔记或提醒。
  3. 为需要它们的JavaScript等其他脚本语言创建说明
  4. HTML评论

    <!-- Everything is invisible  -->