jquery 삭제 요소 추가

1248 단어 jquery

	<script type="text/javascript">
				function matchSelectBrand(){
					var brands = $("#inp_brand").val();
					var temp='';
//  optionhtml            jsp    select          
					var optionhtml='<select name="brand" id="brand" onchange="this.parentElement.previousSibling.value=this.options[this.selectedIndex].text;">';
				
					for(var i=0;i<brandArray.length;i++){
						temp=brandArray[i];
					//	                           
						if(temp.indexOf(brands)>-1){
									optionhtml=optionhtml+'<option value="'+brandCodeArray[i]+'">'+brandNameArray[i]+'</option>';
						}
					}
					//                        
					if(optionhtml.indexOf('option')==-1){
						optionhtml='<option value="">   </option>'
					}
					
				  optionhtml=optionhtml+'</select>'
					
					//    <select> html       select
					
					$('#brand').replaceWith(optionhtml);
						
				}
</script>


좋은 웹페이지 즐겨찾기