私は XML::LibXML を使用しています。コメントがタグの外側になるようにコメントを追加したいと思います。タグの外に置くことさえ可能ですか?私はappendChild、insertBefore |を試しました。その後、違いはありません...
<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>