如何注释掉XML标签块?
即如何<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代码块。