b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 4070

<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,936
18년 전 조회 3,591
18년 전 조회 2,821
18년 전 조회 3,188
18년 전 조회 6,211
18년 전 조회 2,952
18년 전 조회 2,326
18년 전 조회 2,970
18년 전 조회 1,794
18년 전 조회 1만
18년 전 조회 4,793
18년 전 조회 3,615
18년 전 조회 2,158
18년 전 조회 3,921
18년 전 조회 2,610
18년 전 조회 4,062
18년 전 조회 5,480
18년 전 조회 4,152
18년 전 조회 3,006
18년 전 조회 3,277
18년 전 조회 2,778
18년 전 조회 3,106
18년 전 조회 2,221
18년 전 조회 3,786
18년 전 조회 2,459
18년 전 조회 2,593
18년 전 조회 2,400
18년 전 조회 3,386
18년 전 조회 2,319
18년 전 조회 3,000
18년 전 조회 4,184
18년 전 조회 4,902
18년 전 조회 2,714
18년 전 조회 3,175
18년 전 조회 4,939
18년 전 조회 3,020
18년 전 조회 2,194
18년 전 조회 3,652
18년 전 조회 3,453
18년 전 조회 4,172
18년 전 조회 2,508
18년 전 조회 2,669
18년 전 조회 1만
18년 전 조회 3,835
18년 전 조회 3,627
18년 전 조회 3,515
18년 전 조회 3,122
18년 전 조회 4,496
18년 전 조회 5,812
18년 전 조회 4,071
18년 전 조회 3,509
18년 전 조회 3,944
18년 전 조회 2,578
18년 전 조회 3,003
18년 전 조회 4,252
18년 전 조회 3,182
18년 전 조회 4,689
18년 전 조회 2,398
18년 전 조회 2,827
18년 전 조회 2,745
18년 전 조회 4,122
18년 전 조회 4,177
18년 전 조회 2,908
18년 전 조회 2,995
18년 전 조회 3,309
18년 전 조회 3,132
18년 전 조회 2,352
18년 전 조회 2,529
18년 전 조회 5,164
18년 전 조회 4,524
18년 전 조회 3,142
18년 전 조회 2,708
18년 전 조회 3,203
18년 전 조회 2,684
18년 전 조회 3,843
18년 전 조회 2,515
18년 전 조회 2,308
18년 전 조회 2,158
18년 전 조회 1,987
18년 전 조회 3,550
18년 전 조회 4,907
18년 전 조회 5,156
18년 전 조회 2,457
18년 전 조회 3,923
18년 전 조회 3,627
18년 전 조회 4,913
18년 전 조회 3,569
18년 전 조회 4,559
18년 전 조회 4,252
18년 전 조회 3,938
18년 전 조회 3,352
18년 전 조회 3,228
18년 전 조회 3,826
18년 전 조회 2,473
18년 전 조회 2,428
18년 전 조회 5,857
18년 전 조회 3,000
18년 전 조회 2,754
18년 전 조회 3,052
18년 전 조회 2,415