0

我有以下问题:我有一个包含 2 个输入元素的表格。如果其中一个大于另一个,则应该根据比较对整行进行着色。我在加载网站时第一次触发了 onchange 事件。这些程序运行良好,但 onchange 事件仅在 4 次更改中的 1 次中触发。

表语句如下:

<div class="grid">
 <table id="table" class="tableRegion w100">
  <thead style="text-align:left">
   <tr>
    <fmt:bundle basename="res/web/ec_resources">
     <td class="tableHeader">
    ...
     </td> ...
    </fmt:bundle>
   </tr>
  </thead>      
  <tbody>
   <c:set var="i" value="0"/>
   <c:forEach var="participation" items="${someForm.list}">
     <tr id="participationRow${i}">

在这里,表格的代码 > tr > td:

<td class="right bottom nowrap">
 <div>
  <c:out value="${someForm.event.currency.code}"/>
  <fmt:formatNumber maxFractionDigits="2" minFractionDigits="2" var="ovFee" value="${overallFee}" />
  <c:if test="${someForm.array[i].feeDebit != 0.0}">
   <spring:input class="right debit" path="array[${i}].feeDebit" maxlength="7" size="6" onchange="isPaid(${i});" />
  </c:if><c:if test="${someForm.array[i].feeDebit == 0.0}">
   <spring:input class="right debit" path="array[${i}].feeDebit" maxlength="7" size="6" onchange="isPaid(${i});" value="${ovFee}"/>
  </c:if>
 </div>
</td>

<td class="right bottom nowrap">
 <div class="padT5"><c:out value="${someForm.event.currency.code}"/> <spring:input class="right paid" path="array[${i}].feePaid" maxlength="7" size="6" onchange="isPaid(${i});"/></div>
</td>

被调用的脚本如下:

$(document).ready(function(){
    $('#table > tbody > tr').each(function(i) {
        var paid = parseFloat($(this).find('input.paid').val());
        var debit = parseFloat($(this).find('input.debit').val());
        if (paid == debit)
            $('#participationRow'+i).addClass("green");
        else if (paid > debit)
            $('#participationRow'+i).addClass("yellow");
        }
    );
});

function isPaid(i){
    var paid = parseFloat($('#participationRow'+i).find('input.paid').val());
    var debit = parseFloat($('#participationRow'+i).find('input.debit').val());
    if (paid == debit)
        $('#participationRow'+i).addClass("green");
    else if (paid > debit)
        $('#participationRow'+i).addClass("yellow");

}

事件偶尔触发的原因是什么?我用 jQuery 和 onclick 进行了交叉检查。它们都只会偶尔触发一次。无论我是点击离开还是点击离开。

4

3 回答 3

1

当它应该运行时,您的代码缺少任何触发器定义。

第一部分(.each()块)仅在 上执行$(document).ready();,这意味着它在每次页面加载时执行一次(在文档完成加载后立即执行。)

isPaid()函数只不过是一个函数,我看不到它在哪里被调用,因为它不存在于当前代码片段中。

您的代码本身似乎还可以,但它只是缺少任何形式的触发器。

你会期待这样的事情:

$("input").change(function() {

    var the_row = $(this).parent().parent(); //finds the <tr> it belongs to.
    var i = the_row.attr("id").replace("participationRow","");

    isPaid(i);
});

有一些方法可以改进这一点,但这是您的代码中缺少的关键。

于 2012-10-18T14:06:34.900 回答
1
    function highlightIfPaid(i){
        var paid = parseFloat($('#participationRow'+i).find('input.paid').val());
        var debit = parseFloat($('#participationRow'+i).find('input.debit').val());
        if (paid == debit)
            $('#participationRow'+i).addClass("green");
        else if (paid > debit)
            $('#participationRow'+i).addClass("yellow");
    }

    $(document).ready(function(){
        //just use jquery for binding to change event,
        //my guess is that Spring doesn't have a value for i at the point and jquery is not loaded by then so $ is undefined
        $('input.debit').change(function(){
            //you need to get the index i based on your table structure
            //I assumed this is just the index of the row
            //I get this method from this other post http://stackoverflow.com/questions/1620391/find-table-row-index-using-jquery
            var i = $(this).closest('tr').prevAll().length;
            highlightIfPaid(i);
        });

//Dry: highlight your rows on first load
$('#table > tbody > tr').each(highlightIfPaid);
    });
于 2012-10-19T08:39:22.260 回答
0

好的...看了一会儿,在@kabaros und @Flater 的帮助下,我发现以下方法有效:

$(document).ready(function(){
 $('input.paid').change(function(){
  var i = $(this).closest('tr')[0].sectionRowIndex;
  isPaid(i);
 });

解决方案是$('input.paid')触发,而不是$('input'). 计算行数也不是那么容易,但上面的代码正确计算了行数。不幸的是onchange,在input-field 中只会偶尔触发一次!

于 2012-10-19T09:22:29.403 回答