gpt4 book ai didi

jquery - 将内容放在数据元素的末尾 - 如何使用数据元素进行选择

转载 作者:太空宇宙 更新时间:2023-11-04 15:58:55 25 4
gpt4 key购买 nike

我有以下标记,并希望在触发 ajax 回调时在此之后放置“这是我的信息”。我的标记:

<div data-item-header-id="17">
here is an item
</div>
<div data-item-header-id="17">
here is another item
</div>
<!-- put 'here is my info here' here -->
<div data-item-header-id="18">
here is another item
</div>

警报已调用但未放置在正确的位置。鉴于上述标记,我将如何选择?

if(r.is_placed_at_end=='true'){
alert('will place at end');
$('data(item-header-id==17):last)').after("here is my info");
}

我试着看这个,但并没有让我一路走到那里。 jquery data selector

另外,这是对数据元素的正确使用吗?

谢谢

最佳答案

您想使用属性选择器。

$('div[data-item-header-id="17"]:last').after("here is my info");

演示:http://jsfiddle.net/CcA3D/

引用:http://api.jquery.com/category/selectors/

关于jquery - 将内容放在数据元素的末尾 - 如何使用数据元素进行选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10081776/

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