无法在focusout jQuery事件上检索.val()

时间:2012-11-29 13:58:13

标签: javascript jquery

尝试使用jQuery对某些输入字段的焦点(模糊或失去焦点)总计一些值。

以下是我正在使用的功能,但是'newAmount'警告完全空白,无论事件被触发时输入中找到了什么:

//update personnel list total on blur
$('.personnel-list').focusout(function(){
    var currTotal = $('#personnel-office-total').val();
    var newAmount = $(this).val();
    var newTotal = currTotal+newAmount;
    $('#personnel-office-total').val(newTotal);
    alert(currTotal);
    alert(newAmount);
});

<li><label for="personnel-office-other">Other</label><input type="text" class="small-input personnel-input" name="personnel-office-other-dummy" id="personnel-office-other" /></li>
<li><label for="personnel-office-total">Total <em class="formee-req">*</em></label><input readonly="readonly" type="text" class="required small-input" name="personnel-office-managers-total" id="personnel-office-total" value="0" /></li>

1 个答案:

答案 0 :(得分:0)

$('.personnel-input').focusout(function(){

});

而不是你拥有的东西。