当一个值小于 4 时填充输入字段的脚本有问题。当值小于 4 时,脚本填充字段但未选择该值,所以当我要进行下一步时,我在此没有任何价值场地。当值大于 4 时,一切正常(该值也由 jquery 填充)。
function compute() {
if( parseInt($("#finish_day").val()) < 4 ) {
$('#return_car').children('#return_car option[value=' + $('#get_car').val() + ']').attr('selected', true).siblings().attr('disabled', true); if
($('#return_car').val()) $('#return_car').change();
}
else {
$('#get_car > option, #return_car > option').prop('disabled', false);
$('#three_day').hide(2000, function () {
$(this).remove();
});
}
}
$('select#get_car').change(compute);$('input#finish_day').change(compute);