gpt4 book ai didi

javascript - JQuery: append 到在另一个函数中创建的元素

转载 作者:行者123 更新时间:2023-12-02 20:42:01 25 4
gpt4 key购买 nike

我创建了一个像这样的div:

 $(document).ready(function() {
$(document.createElement("div")).attr("id", "container").appendTo("body");
});

然后,我想动态地向其中添加一些内容,因此在我调用的另一个函数中

$(newElement).appendTo("#container");

但它没有做任何事情。 div 仍然存在,但它是空的。如果我将代码更改为

$(newElement).appendTo("body");

效果很好。关于我做错了什么有什么想法吗?

这是我的代码的完整示例:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(document.createElement("div")).attr("id", "container").appendTo("body");
});

function add() {
var newElement = $(document.createElement("div")).attr("id", "inner");
$(newElement).appendTo("#container");
}
</script>
<style type="text/css">
#inner{
background-color: black;
height: 200px;
width:100px;
}
</style>
</head>
<body>
<script language="JavaScript" type="TEXT/JAVASCRIPT">
add();
</script>
</body>
</html>

最佳答案

您的 add() 函数在 $(document).ready(); 之前被调用

将其更改为这样,它应该可以工作:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(document.createElement("div")).attr("id", "container").appendTo("body");
add();
});

function add() {
var newElement = $(document.createElement("div")).attr("id", "inner");
$(newElement).appendTo("#container");
}
</script>
<style type="text/css">
#inner{
background-color: black;
height: 200px;
width:100px;
}
</style>
</head>
<body>
</body>
</html>

可以压缩为:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript">
$(function() {
$("<div/>", { id : "container" }).appendTo("body");
$("<div/>", { id : "inner"}).appendTo("#container");
});
</script>
<style type="text/css">
#inner{
background-color: black;
height: 200px;
width:100px;
}
</style>
</head>
<body>
</body>
</html>

关于javascript - JQuery: append 到在另一个函数中创建的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2197312/

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