b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 4044

<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,910
18년 전 조회 3,561
18년 전 조회 2,792
18년 전 조회 3,162
18년 전 조회 6,181
18년 전 조회 2,935
18년 전 조회 2,299
18년 전 조회 2,941
18년 전 조회 1,769
18년 전 조회 1만
18년 전 조회 4,768
18년 전 조회 3,593
18년 전 조회 2,134
18년 전 조회 3,899
18년 전 조회 2,584
18년 전 조회 4,040
18년 전 조회 5,455
18년 전 조회 4,132
18년 전 조회 2,984
18년 전 조회 3,256
18년 전 조회 2,754
18년 전 조회 3,087
18년 전 조회 2,205
18년 전 조회 3,750
18년 전 조회 2,432
18년 전 조회 2,574
18년 전 조회 2,381
18년 전 조회 3,364
18년 전 조회 2,297
18년 전 조회 2,977
18년 전 조회 4,168
18년 전 조회 4,883
18년 전 조회 2,686
18년 전 조회 3,154
18년 전 조회 4,917
18년 전 조회 3,000
18년 전 조회 2,174
18년 전 조회 3,624
18년 전 조회 3,433
18년 전 조회 4,149
18년 전 조회 2,487
18년 전 조회 2,643
18년 전 조회 1만
18년 전 조회 3,813
18년 전 조회 3,601
18년 전 조회 3,486
18년 전 조회 3,103
18년 전 조회 4,460
18년 전 조회 5,788
18년 전 조회 4,045
18년 전 조회 3,487
18년 전 조회 3,919
18년 전 조회 2,555
18년 전 조회 2,973
18년 전 조회 4,225
18년 전 조회 3,158
18년 전 조회 4,665
18년 전 조회 2,372
18년 전 조회 2,803
18년 전 조회 2,712
18년 전 조회 4,091
18년 전 조회 4,147
18년 전 조회 2,877
18년 전 조회 2,969
18년 전 조회 3,275
18년 전 조회 3,101
18년 전 조회 2,328
18년 전 조회 2,498
18년 전 조회 5,128
18년 전 조회 4,484
18년 전 조회 3,105
18년 전 조회 2,669
18년 전 조회 3,168
18년 전 조회 2,645
18년 전 조회 3,810
18년 전 조회 2,482
18년 전 조회 2,278
18년 전 조회 2,135
18년 전 조회 1,958
18년 전 조회 3,515
18년 전 조회 4,870
18년 전 조회 5,124
18년 전 조회 2,431
18년 전 조회 3,887
18년 전 조회 3,592
18년 전 조회 4,883
18년 전 조회 3,532
18년 전 조회 4,532
18년 전 조회 4,220
18년 전 조회 3,905
18년 전 조회 3,323
18년 전 조회 3,203
18년 전 조회 3,798
18년 전 조회 2,444
18년 전 조회 2,401
18년 전 조회 5,822
18년 전 조회 2,974
18년 전 조회 2,728
18년 전 조회 3,021
18년 전 조회 2,382