2012. 12. 15. 20:04

javascript selectbox 값으로 셋팅하기

   var opnt_select = document.getElementById("opnt_company_oid");

   for(var i=0; opnt_select.length+1; i++){    
    if(opnt_select.options[i].value=="<%=code%>"){
     opnt_select.options[i].selected = true;
     break;       <<--안주면 스크립트 오류
    }
   }