最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Failed to execute 'insertBefore' on 'Node': The node before which the new node is t

programmeradmin1浏览0评论

I'm trying to insert a ment node before the particular node (<name>) in my xml. Here is the method for it:

function test(xmlResponse)
{
    var parser = new DOMParser(), xmlDoc = parser.parseFromString(xmlResponse,"text/xml");

    var entDocument = document.createComment("My personal ments");

    console.log(xmlDoc.querySelectorAll("street name")[0])
    xmlDoc.insertBefore( entDocument ,  xmlDoc.querySelectorAll("street name")[0]);

    return xmlDoc
}

and when I call:

test("<address><street><name>Street name</name></street></address>")

I get:

<name>Street name</name>
Uncaught DOMException: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.
    at Error (native)
    at generateTheComment (<anonymous>:12:9)
    at <anonymous>:2:1
    at Object.InjectedScript._evaluateOn (<anonymous>:895:140)
    at Object.InjectedScript._evaluateAndWrap (<anonymous>:828:34)
    at Object.InjectedScript.evaluate (<anonymous>:694:21)

As you can see the <name>Street name</name> is getting printed correctly; as I want to append the entDocument to its parent <street>.

Not sure where I'm making mistake here.

I'm expecting the code to return back:

<address>
   <street>
     <!-- My personal ments -->
     <name>Street name
     </name>
   </street>
</address>

I'm trying to insert a ment node before the particular node (<name>) in my xml. Here is the method for it:

function test(xmlResponse)
{
    var parser = new DOMParser(), xmlDoc = parser.parseFromString(xmlResponse,"text/xml");

    var entDocument = document.createComment("My personal ments");

    console.log(xmlDoc.querySelectorAll("street name")[0])
    xmlDoc.insertBefore( entDocument ,  xmlDoc.querySelectorAll("street name")[0]);

    return xmlDoc
}

and when I call:

test("<address><street><name>Street name</name></street></address>")

I get:

<name>Street name</name>
Uncaught DOMException: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.
    at Error (native)
    at generateTheComment (<anonymous>:12:9)
    at <anonymous>:2:1
    at Object.InjectedScript._evaluateOn (<anonymous>:895:140)
    at Object.InjectedScript._evaluateAndWrap (<anonymous>:828:34)
    at Object.InjectedScript.evaluate (<anonymous>:694:21)

As you can see the <name>Street name</name> is getting printed correctly; as I want to append the entDocument to its parent <street>.

Not sure where I'm making mistake here.

I'm expecting the code to return back:

<address>
   <street>
     <!-- My personal ments -->
     <name>Street name
     </name>
   </street>
</address>
Share Improve this question asked Jun 18, 2015 at 10:37 batmanbatman 3,6856 gold badges23 silver badges46 bronze badges 2
  • 1 Well, it seems like you don't want to insert that ment in the xmlDoc, but in that <street> node. – Bergi Commented Jun 18, 2015 at 11:51
  • Related: stackoverflow./questions/3352871/… – Bartek Banachewicz Commented Jun 18, 2015 at 11:56
Add a ment  | 

1 Answer 1

Reset to default 5
xmlDoc.insertBefore( entDocument ,  xmlDoc.querySelectorAll("street name")[0]);

This tries to insert directly from the document. You need to get to the direct parent of the element you want to insert your ment before:

var name = xmlDoc.querySelector("street name");
name.parentNode.insertBefore(entDocument, name);

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论