如何注释掉 XML 中的标记块?
即如何<staticText>在下面的代码中注释掉其中的所有内容?
<staticText>
<detail> <band height="20"> <staticText> <reportElement x="180" y="0" width="200" height="20"/> <text><![CDATA[Hello World!]]></text> </staticText> </band> </detail>
我可以使用<!-- staticText-->,但这只是用于单个标签(据我所知),就像//在 Java 和 C 中一样。我想要更像是如何/** comment **/在 Java 和 C 中使用的东西,所以我可以注释掉更长的 XML 代码块。
<!-- staticText-->
//
/** comment **/
您可以在多行中使用该样式的注释(也存在于 HTML 中)
<detail> <band height="20"> <!-- Hello, I am a multi-line XML comment <staticText> <reportElement x="180" y="0" width="200" height="20"/> <text><![CDATA[Hello World!]]></text> </staticText> --> </band> </detail>