javascript는 드롭다운 목록에 데이터 항목을 추가합니다.html
드롭다운 목록에 데이터 항목을 동적으로 추가합니다.
<스크립트 유형 ="text/javascript">
function gel(id) { return document.getElementById(id) }
window.onload = function() {
var cbbYear = gel("mysel ");
for ( var i = 1990; i < 2014; i ) {
//방법 1
/*var opt = document.createElement("option");
opt.innerHTML = i;
cbbYear.appendChild(opt);*/
//방법 2
var opt = new Option(i, i)
cbbYear.options. add(opt);
< /select>