Jquery 필터 select 드롭다운 메뉴에서 같은value option


html:


jquery:
function checkWeighing(selectId){
			opts = $("#"+selectId).find("option");
			opts.each(function () {
		       	optVal = $(this).val();
		        if(optVal == ""){
		        	return true;
		        }
		        if($("#"+selectId+" option[value='" + optVal + "']").length > 1)
	                $("#"+selectId+" option[value='" + optVal + "']:gt(0)").remove();
		    })
		}

좋은 웹페이지 즐겨찾기