b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 4101

<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,961
18년 전 조회 3,612
18년 전 조회 2,847
18년 전 조회 3,211
18년 전 조회 6,234
18년 전 조회 2,978
18년 전 조회 2,353
18년 전 조회 2,993
18년 전 조회 1,820
18년 전 조회 1만
18년 전 조회 4,815
18년 전 조회 3,634
18년 전 조회 2,178
18년 전 조회 3,940
18년 전 조회 2,628
18년 전 조회 4,090
18년 전 조회 5,503
18년 전 조회 4,182
18년 전 조회 3,033
18년 전 조회 3,289
18년 전 조회 2,799
18년 전 조회 3,131
18년 전 조회 2,245
18년 전 조회 3,809
18년 전 조회 2,494
18년 전 조회 2,615
18년 전 조회 2,423
18년 전 조회 3,405
18년 전 조회 2,345
18년 전 조회 3,030
18년 전 조회 4,216
18년 전 조회 4,929
18년 전 조회 2,747
18년 전 조회 3,201
18년 전 조회 4,973
18년 전 조회 3,059
18년 전 조회 2,220
18년 전 조회 3,683
18년 전 조회 3,481
18년 전 조회 4,198
18년 전 조회 2,534
18년 전 조회 2,698
18년 전 조회 1만
18년 전 조회 3,864
18년 전 조회 3,652
18년 전 조회 3,543
18년 전 조회 3,160
18년 전 조회 4,525
18년 전 조회 5,841
18년 전 조회 4,102
18년 전 조회 3,536
18년 전 조회 3,969
18년 전 조회 2,617
18년 전 조회 3,034
18년 전 조회 4,284
18년 전 조회 3,215
18년 전 조회 4,725
18년 전 조회 2,432
18년 전 조회 2,857
18년 전 조회 2,772
18년 전 조회 4,149
18년 전 조회 4,202
18년 전 조회 2,943
18년 전 조회 3,029
18년 전 조회 3,338
18년 전 조회 3,165
18년 전 조회 2,389
18년 전 조회 2,562
18년 전 조회 5,191
18년 전 조회 4,549
18년 전 조회 3,174
18년 전 조회 2,747
18년 전 조회 3,233
18년 전 조회 2,711
18년 전 조회 3,883
18년 전 조회 2,544
18년 전 조회 2,340
18년 전 조회 2,191
18년 전 조회 2,023
18년 전 조회 3,584
18년 전 조회 4,937
18년 전 조회 5,190
18년 전 조회 2,484
18년 전 조회 3,963
18년 전 조회 3,660
18년 전 조회 4,951
18년 전 조회 3,598
18년 전 조회 4,594
18년 전 조회 4,288
18년 전 조회 3,973
18년 전 조회 3,384
18년 전 조회 3,262
18년 전 조회 3,853
18년 전 조회 2,505
18년 전 조회 2,455
18년 전 조회 5,888
18년 전 조회 3,027
18년 전 조회 2,785
18년 전 조회 3,065
18년 전 조회 2,436