1

当一个值小于 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);
4

1 回答 1

1
  $('#return_car').children('#return_car option[value=' + $('#get_car').val() + ']').prop('selected', true).siblings().prop('disabled', true);


  $('#return_car').children('option[value=' + $('#get_car').val() + ']').prop('selected', true).siblings().prop({disabled:true,selected:false});

解决方案是添加 disabled:true 并选中。

于 2012-10-20T17:46:44.617 回答