📚 Reference


🔖 Index


select box & option


  1. option 전부 삭제
element.options.length = 0;
  1. i 번째 option 삭제
element.option[i] = null;
element.remove(i);