对于 禁用
$("#search").prop('disabled', true);为 使
$("#search").prop('disabled', false);像下面的功能
function GetProductByManufacturerID(value) { $.ajax({ type: "POST", url: "add_rebate_by_quat_volume.php", data: { manufacturer_id: value, op:"" }, beforeSend: function() { $("#product_id").html('<option> Loading ...</option>'); $("#search").prop('disabled', true); // disable button }, success:function(data){ $("#product_id").html(''); $("#product_id").append(data); $("#search").prop('disabled', false); // enable button } });}


