gpt4 book ai didi

javascript - 获取jQuery中的项目总数

转载 作者:行者123 更新时间:2023-11-30 10:03:00 29 4
gpt4 key购买 nike

这是我的 html:

<label id='custom'></label>
<p>test</p>
<label id='start_date[0]'></label>
<p>test</p>
<p>test</p>
<label id='start_date[1]'></label>
<label id='start_date[2]'></label>
<p>test</p>
<label id='custom2'></label>

我想得到标签的总数,其中有这种格式的id:开始日期[i]。我怎样才能做到这一点?你能给点想法吗?谢谢。

最佳答案

您可以使用“属性开头为”选择器和 length 属性:

var itemCount = $('label[id^="start_date"]').length;
alert(itemCount);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label id='custom'></label>
<p>test</p>

<label id='start_date[0]'></label>
<p>test</p>
<p>test</p>

<label id='start_date[1]'></label>

<label id='start_date[2]'></label>
<p>test</p>

<label id='custom2'></label>

关于javascript - 获取jQuery中的项目总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30620346/

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