我想在HTML源代码中显示注释,但只在源代码中显示,而不是在页面的实际呈现内容上。例如,当用户右键单击他们的浏览器窗口并选择“查看源代码”时,我希望他们可以看到评论,但我不希望评论在实际呈现的网站上可见。
我试过
<span style="visibility: hidden;">
Joe Hancock - 04/16/12 - Some comment
</span>
但这样做会占用网页上的实际空间(白色空间),并且真正抛弃了我的造型。
任何人都知道这样做的好方法吗?
答案 0 :(得分:7)
<!--This is a comment. Comments are not displayed in the browser-->
HTML评论
答案 1 :(得分:2)
试试这个:
<!-- Comment goes inside here -->
答案 2 :(得分:0)
1<div style="display:none">This is hidden</div>2