b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 4092

<style>
#list {width:140; height:100px;}
</style>

<script type="text/javascript">
<!--
    var header = {
        input : '',
        sel : '',
        
        init: function()
        {
            this.input = document.getElementById('input_head');
            this.sel = document.getElementById('list');
            var addbtn = document.getElementById('addbtn');
            var delbtn = document.getElementById('delbtn');
            addbtn.onclick = function() {header.addHeader();}
            delbtn.onclick = function() { header.delHeader(); }
            
        },
        addHeader: function()
        {
            var newOpt = document.createElement('option');
            newOpt.text = this.input.value;
            newOpt.value = this.input.value;
            this.sel.add(newOpt);
            this.input.value= '';
        },
        
        delHeader: function()
        {
            this.sel.remove(this.sel.selectedIndex);
        }
    };
//-->
</script>
<div><input type="text" size="20" id="input_head"><button id="addbtn">추가</button></div>
<div><select id="list" size="10"></select></div><button id="delbtn">삭제</button>
<script type="text/javascript">    header.init();</script>
[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
18년 전 조회 2,948
18년 전 조회 3,602
18년 전 조회 2,832
18년 전 조회 3,203
18년 전 조회 6,227
18년 전 조회 2,966
18년 전 조회 2,341
18년 전 조회 2,980
18년 전 조회 1,806
18년 전 조회 1만
18년 전 조회 4,802
18년 전 조회 3,628
18년 전 조회 2,171
18년 전 조회 3,931
18년 전 조회 2,623
18년 전 조회 4,075
18년 전 조회 5,494
18년 전 조회 4,173
18년 전 조회 3,024
18년 전 조회 3,282
18년 전 조회 2,788
18년 전 조회 3,118
18년 전 조회 2,236
18년 전 조회 3,799
18년 전 조회 2,476
18년 전 조회 2,607
18년 전 조회 2,412
18년 전 조회 3,392
18년 전 조회 2,334
18년 전 조회 3,014
18년 전 조회 4,199
18년 전 조회 4,920
18년 전 조회 2,733
18년 전 조회 3,190
18년 전 조회 4,958
18년 전 조회 3,044
18년 전 조회 2,209
18년 전 조회 3,667
18년 전 조회 3,472
18년 전 조회 4,189
18년 전 조회 2,521
18년 전 조회 2,689
18년 전 조회 1만
18년 전 조회 3,855
18년 전 조회 3,642
18년 전 조회 3,532
18년 전 조회 3,143
18년 전 조회 4,517
18년 전 조회 5,828
18년 전 조회 4,093
18년 전 조회 3,523
18년 전 조회 3,956
18년 전 조회 2,601
18년 전 조회 3,026
18년 전 조회 4,264
18년 전 조회 3,202
18년 전 조회 4,707
18년 전 조회 2,419
18년 전 조회 2,845
18년 전 조회 2,757
18년 전 조회 4,141
18년 전 조회 4,191
18년 전 조회 2,930
18년 전 조회 3,013
18년 전 조회 3,322
18년 전 조회 3,151
18년 전 조회 2,370
18년 전 조회 2,546
18년 전 조회 5,182
18년 전 조회 4,540
18년 전 조회 3,159
18년 전 조회 2,731
18년 전 조회 3,219
18년 전 조회 2,702
18년 전 조회 3,866
18년 전 조회 2,530
18년 전 조회 2,333
18년 전 조회 2,175
18년 전 조회 2,011
18년 전 조회 3,568
18년 전 조회 4,922
18년 전 조회 5,176
18년 전 조회 2,473
18년 전 조회 3,945
18년 전 조회 3,645
18년 전 조회 4,941
18년 전 조회 3,588
18년 전 조회 4,578
18년 전 조회 4,275
18년 전 조회 3,959
18년 전 조회 3,369
18년 전 조회 3,250
18년 전 조회 3,843
18년 전 조회 2,490
18년 전 조회 2,448
18년 전 조회 5,873
18년 전 조회 3,010
18년 전 조회 2,775
18년 전 조회 3,061
18년 전 조회 2,432