gpt4 book ai didi

javascript - body.appendchild 函数中的 js 脚本错误

转载 作者:行者123 更新时间:2023-11-29 09:59:01 29 4
gpt4 key购买 nike

var loc=window.location.href,width="500px",height="450px";
var a=document.createElement("div");

a.id="xyz";
a.style.position="fixed";
a.style.width="500px";
a.style.height="450px";
a.style.top="0px";
a.style.right="0px";

$('body').appendChild(a);
a.innerHTML='<iframe id="submit" width="500px" height="450px" src="http://abc.html"><iframe>';

这段代码给出了错误表达式 '$('body').appendChild' [undefined] 的结果不是函数。

请帮助我,因为我不知道为什么会出现这个错误

最佳答案

$('body') 返回一个 jQuery 对象,而不是 DOM 节点。该对象没有 appendChild 函数。 jQuery 等价物是:

$('body').append(a);

或者,使用 get 获取 DOM 节点:

$('body').get(0).appendChild(a);

关于javascript - body.appendchild 函数中的 js 脚本错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5304684/

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