使用JQuery计算<p>中的输入</p>

时间:2009-09-03 06:07:21

标签: jquery

我有一个

      <p style="display: block;" class="title fieldChoices">Choices:
          <input value="option1" maxlength="150" id="Choice1"/>
          <input value="option2" maxlength="150" id="Choice2"/>
      </p>

我正在尝试计算此fieldChoices使用的输入框数量 jQuery的。请提供一些方法。

2 个答案:

答案 0 :(得分:7)

$("p.fieldChoices input").length;

答案 1 :(得分:4)

$("p input").length;