//下拉框禁用$("select").each(function () { $("#" + this.id).attr("disabled", true);});
//下拉框启用$("select").each(function () { $("#" + this.id).removeAttr("disabled");});