如何使用jQuery计数选项标签的数量?

前端之家收集整理的这篇文章主要介绍了如何使用jQuery计数选项标签的数量?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个问题,当我有多个选择框相同的类和id时,如何计算选项标签数量

假设我有三个选择框.而且我想要选择框的大小,所以我可以动态添加新的选择框与相同的选项:

<select id="selectid" class="selectclass">
    <option>1</option>
    <option>2</option>
</select>

<select id="selectid" class="selectclass">
    <option>1</option>
   <option>2</option>
</select>

<select id="selectid" class="selectclass">
    <option>1</option>
    <option>2</option>
</select>

解决方法

用jquery:

对于给定的选择与id:

$('select#selectid option').length

为所有选择与给定的类:

$('select.selectclass option').length

对于页面中的所有选择:

$('select option').length

但是您应该为html页面中的每个元素提供不同的Ids

原文链接:https://www.f2er.com/jquery/179912.html

猜你在找的jQuery相关文章