본문 바로가기
프로그래밍/html js css

자바스크립트 select 박스 option 삭제

by RPoint 2012. 11. 13.

전부 삭제 

object.options.length=0; 


i번째 삭제 

object.option[i] = null 


or


object.remove(i); 


댓글