1
我正在使用XML :: LibXML,我想添加註釋,以使註釋位於標記之外。它甚至有可能把它放在標籤之外嗎?我試過appendChild,insertBefore |之後,沒有區別...LibXML - 插入註釋
<JJ>junk</JJ> <!--My comment Here!-->
# Code excerpt from within a foreach loop:
my $elem = $dom->createElement("JJ");
my $txt_node = $dom->createTextNode("junk");
my $cmt = $dom->createComment("My comment Here!");
$elem->appendChild($txt_node);
$b->appendChild($elem);
$b->appendChild($frag);
$elem->appendChild($cmt);
# but it puts the comment between the tags ...
<JJ>junk<!--My comment Here!--></JJ>
再次感謝@nwellnhof! – CraigP