Jquery 将父级替换为第一个子级
我正在尝试用第一个孩子替换 dom 父母,并删除所有其他孩子。它不起作用。我收到错误:“无法在层次结构中的指定点插入节点”
$("#over1").replaceWith($(this).children()[0]);
I'm trying to replace a dom parent with its first child and deleting all other children. It's not working. I got error: "Node cannot be inserted at the specified point in the hierarchy"
$("#over1").replaceWith($(this).children()[0]);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
this
未引用 #over1 元素。相反,你应该这样做:this
isn't referencing the #over1 element. Instead you should do: