我使用的是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>发布于 2013-10-16 19:46:28
不要将注释节点附加到$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>https://stackoverflow.com/questions/19411152
复制相似问题