gpt4 book ai didi

javascript - 根据 hidden 有值的输入类型统计
  • 转载 作者:太空宇宙 更新时间:2023-11-04 14:32:46 26 4
    gpt4 key购买 nike

    如何根据每个隐藏的有值(value)的输入类型来计算li

    HTML:

    <ul id="room_1">
    <li>
    <div class="wrap participantlist wrap_body" style="color:#000000">
    <input type="hidden" name="hidden" value="1" id="channel">
    </div>
    </li>
    <li>
    <div class="wrap participantlist wrap_body" style="color:#000000">
    <input type="hidden" name="hidden" value="2" id="channel">
    </div>
    </li>
    <li>
    <div class="wrap participantlist wrap_body" style="color:#000000">
    <input type="hidden" name="hidden" value="" id="channel">
    </div>
    </li>
    </ul>

    Javascript:

     var participantLength = $("#room_1 li").length;
    console.log(participantLength);

    隐藏的有值输入的个数是2

     <input type="hidden" name="hidden" value="1" id="channel">

     <input type="hidden" name="hidden" value="2" id="channel">

    所以输出应该是2

    最佳答案

    好了,它应该会显示有值(value)的输入数量

    $("ul li input[value!='']").length

    关于javascript - 根据 hidden 有值的输入类型统计 <li>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32515481/

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