如何删除“已禁用”#39;如果另一个文本框具有值,则属性

时间:2017-03-07 08:23:30

标签: javascript php jquery

我有两个文本框(Qty,Empties),如下所示。如果数量文本框有值,我想删除已禁用属性。我如何用JS做到这一点?

    <input type="number" class="form-control" name="qtyEmpty[]" 
             disabled id="<?php echo "qtyEmpty" . $b++; ?>" 
             min="1" max="<?php echo $case_true_quantity; ?>" />

Grid

1 个答案:

答案 0 :(得分:1)

我相信这应该可以解决你的问题

HTML:

<input type="text" name="sPriceRewards" id="sPriceRewards" value="" />
<input type="text" name="sReward1" value="" class="inputReward" />

JS代码:

$('#sPriceRewards').on('input', function() {

if($(this).val().length)
   $('.inputReward').prop('disabled', true);
else
    $('.inputReward').prop('disabled', false);
});