gpt4 book ai didi

javascript replacechild 不工作

转载 作者:行者123 更新时间:2023-12-03 18:20:43 27 4
gpt4 key购买 nike

我知道这是一个简单的概念,但我似乎无法让它发挥作用。任何想法为什么?这是我的代码:

var oldChild = document.getElementById("sbX1");
var newChild = document.createElement("div");
newChild.id= "sbYY1";
oldChild.replaceChild(newChild, oldChild);

最佳答案

你在 oldchild 上调用 replaceChild(),而你应该在 oldchild 的父节点上调用它

var oldChild = document.getElementById("sbX1");
var newChild = document.createElement("div");
newChild.id= "sbYY1";

// Replace oldchild on the parent node
// You can reference the child's parent via .parentNode
// or retrieve it directly with document.getElementById('theparentId')
oldchild.parentNode.replaceChild(newChild, oldChild);

关于javascript replacechild 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10989158/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com