gpt4 book ai didi

jquery-selectors - 使用 JQuery 选择器知道父 div id 通过 id 选择子 div

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

我有这个 html:

<div id="top">
<div id="potato"></div>
</div>
<div id="bottom">
<div id="potato"></div>
</div>

我正在尝试使用 JQuery 访问底部的土 bean div,但以下均无效。
$('#top #potato').html('Russet');
$('#bottom #potato').html('Red');

$('#top > #potato').html('Russet');
$('#bottom > #potato').html('Red');

$('#potato').html('Idaho');

所有这些只是修改顶部的 div 而不是底部的 div。如何修改底部的div?

最佳答案

所有元素都必须有唯一的 ID,在这种情况下,您可以使用 class 属性,以便您拥有

<div class="potato" />

您可以这样访问:
$('#bottom > .potato').html('Idaho');

关于jquery-selectors - 使用 JQuery 选择器知道父 div id 通过 id 选择子 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/997646/

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