//添加
$("select[name='type']").append("<option value=''>请选择</option>");
$.each(typeList, function (i, item) {});$("select[name='detail_type']").append("<option value="+ item.value+">"+ item.label+"</option>");
//移除
$("select[name='type'] option[value='语文']").remove();
//初始选中
$(this).find("select[name='cost_bizType']").find("option[value='"+bizType+"']").attr("selected","true");//选中