0

在下面的脚本中,我需要更改 jQuery each(),以便它不使用泛型类,而是从目标元素 #customfield_11071 开始,然后向上爬到最近的“活动窗格”父元素 (.active- pane#tab-5) 并仅将带有 class="text.long-field" 的子元素输入传递给每个?

我认为通过将#tab-5 直接传递给每个它会做到这一点,但是它会拾取与 tab-5 父容器外部的类匹配的文本输入字段并将它们添加到总数中,从而导致计算错误。

jQuery(document).ready(function(){

        //iterate through each textboxes and add keyup
        //handler to trigger sum event
        jQuery("#tab-5 input.text.long-field").each(function() {

            jQuery(this).keyup(function(){
                calculateSum();
            });
        });

    });

    function calculateSum() {

        var sum = 0;
        //iterate through each textboxes and add the values
        jQuery("#tab-5 input.text.long-field").each(function() {

            //add only if the value is number
            if(!isNaN(this.value) && this.value.length!=0 && this.id !== "customfield_11071") {
                sum += parseFloat(this.value);
            }

        });
        //.toFixed() method will roundoff the final sum to 2 decimal places
        jQuery("#customfield_11071").val(sum.toFixed(2));
    }

HTML

  <div class="tabs-pane active-pane" id="tab-5">
    <div class="field-group">
      <label for="customfield_12370">
        Test Case Estimate
      </label>
      <input class="text long-field" id="customfield_12370" name="customfield_12370" type="text" value="">
      <div class="description">
        Will hold all QA estimates for Test Case preparation/creation efforts.
      </div>
    </div>
    <div class="field-group">
      <label for="customfield_12371">
        Test Analysis Estimate
      </label>
      <input class="text long-field" id="customfield_12371" name="customfield_12371" type="text" value="">
      <div class="description">
        Will hold all QA estimates for testing analysis efforts.
      </div>
    </div>
    <div class="field-group">
      <label for="customfield_11071">
        QA Estimate Total
      </label>
      <input class="text long-field" id="customfield_11071" name="customfield_11071" type="text" value="">
      <div class="description">
        Estimated LOE in Hours
      </div>
    </div>
  </div>

更新:或者,不是将类字符串传递给 each,也许我可以将特定的 id 集合填充到一个数组中并将其传递给 each()?

4

1 回答 1

0

您的脚本可以单独运行。请参阅http://jsfiddle.net/jEEKL/。如果您使用此jQuery("#tab-5 input.text.long-field")jQuery 选择器获得额外的字段,请检查您的来源是否有重复的选项卡 ID。

于 2013-04-03T15:49:08.637 回答