我有两个文本框(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; ?>" />
答案 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);
});