gpt4 book ai didi

javascript - “未捕获的层次结构请求错误 : new line tag after createTextNode

转载 作者:行者123 更新时间:2023-12-03 08:24:15 25 4
gpt4 key购买 nike

这是我试图使其工作的代码:

var aform = document.createElement("form");
var model = document.createTextNode("xyz");
var newLine = document.createElement('br');
model.appendChild(newLine);
var status = document.createTextNode("abc");

aform.appendChild(model);
aform.appendChild(status);

$("#someDiv").append(aform);

当我尝试运行代码时,它总是给我错误

"Uncaught HierarchyRequestError: Failed to execute 'appendChild' on 'Node': This node type does not support this method."

有人可以建议一下为什么它不起作用吗?我只想在创建文本节点 xyz 和 abc 之后换一个新行。

最佳答案

你可以用 jQuery 完成所有的事情,因为你无论如何都在使用它:

$("#someDiv").append("<form>xyz<br>abc</form>");

关于javascript - “未捕获的层次结构请求错误 : new line tag after createTextNode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33618644/

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