gpt4 book ai didi

javascript - 引用已附加到内容中的 div(按 id)

转载 作者:行者123 更新时间:2023-11-29 18:35:57 24 4
gpt4 key购买 nike

我有一个动态创建的 div,具有唯一 ID。我将它附加到页面上的一个区域。

稍后,我尝试通过 $( '#id_here' ) 引用它,但它没有返回任何内容。 safari/chrome 中的检查器显示元素的存在和正确的 id。

<script>
$( '#box' ).append( '<div><input id="id123" /></div>' );
//Later on in time...

function doingStuff(){
alert( $( '#id123' ) );//undefined
}
</script>

<div id="box">

</div>

最佳答案

确保在 DOM 准备好之前添加对象,否则您可能还无法访问#box。

$( document ).ready( function() 
{
$( '#box' ).append( '<div><input id="id123" /></div>' );
} );

关于javascript - 引用已附加到内容中的 div(按 id),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3169707/

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