1

私は 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>
4

1 に答える 1

5

コメント ノードを追加するのではなく$elem、親ノードに追加します。たとえば、次のスクリプト

use XML::LibXML;

my $doc = XML::LibXML::Document->new;
my $root = $doc->createElement("doc");
$doc->setDocumentElement($root);
$root->appendChild($doc->createElement("JJ"));
$root->appendChild($doc->createComment("comment"));
print $doc->toString(1);

版画

<?xml version="1.0"?>
<doc>
  <JJ/>
  <!--comment-->
</doc>
于 2013-10-16T19:46:28.360 に答える