본문 바로가기

Javascript

셀렉트 박스 값 초기화 함수


 /* 셀렉트 박스 값 초기화 함수 */
 function clearSelectBox(selectBox)
 {
  if (null == selectBox || null == selectBox.options)
  {
   return;
  }
  var length = selectBox.options.length;
  for (var index=0;index<length ;index++){ selectBox.options.remove(0); }
 }