b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3960

<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,826
18년 전 조회 3,485
18년 전 조회 2,691
18년 전 조회 3,058
18년 전 조회 6,081
18년 전 조회 2,838
18년 전 조회 2,217
18년 전 조회 2,858
18년 전 조회 1,688
18년 전 조회 1만
18년 전 조회 4,673
18년 전 조회 3,500
18년 전 조회 2,027
18년 전 조회 3,814
18년 전 조회 2,493
18년 전 조회 3,944
18년 전 조회 5,373
18년 전 조회 4,029
18년 전 조회 2,890
18년 전 조회 3,173
18년 전 조회 2,660
18년 전 조회 2,987
18년 전 조회 2,109
18년 전 조회 3,658
18년 전 조회 2,349
18년 전 조회 2,480
18년 전 조회 2,294
18년 전 조회 3,266
18년 전 조회 2,205
18년 전 조회 2,873
18년 전 조회 4,063
18년 전 조회 4,782
18년 전 조회 2,577
18년 전 조회 3,066
18년 전 조회 4,833
18년 전 조회 2,899
18년 전 조회 2,070
18년 전 조회 3,535
18년 전 조회 3,337
18년 전 조회 4,056
18년 전 조회 2,394
18년 전 조회 2,549
18년 전 조회 1만
18년 전 조회 3,729
18년 전 조회 3,513
18년 전 조회 3,394
18년 전 조회 3,018
18년 전 조회 4,365
18년 전 조회 5,706
18년 전 조회 3,961
18년 전 조회 3,412
18년 전 조회 3,827
18년 전 조회 2,473
18년 전 조회 2,899
18년 전 조회 4,139
18년 전 조회 3,064
18년 전 조회 4,565
18년 전 조회 2,292
18년 전 조회 2,718
18년 전 조회 2,630
18년 전 조회 4,002
18년 전 조회 4,055
18년 전 조회 2,785
18년 전 조회 2,866
18년 전 조회 3,179
18년 전 조회 3,015
18년 전 조회 2,234
18년 전 조회 2,394
18년 전 조회 5,045
18년 전 조회 4,399
18년 전 조회 3,024
18년 전 조회 2,559
18년 전 조회 3,080
18년 전 조회 2,551
18년 전 조회 3,726
18년 전 조회 2,391
18년 전 조회 2,173
18년 전 조회 2,043
18년 전 조회 1,861
18년 전 조회 3,428
18년 전 조회 4,762
18년 전 조회 5,039
18년 전 조회 2,334
18년 전 조회 3,799
18년 전 조회 3,504
18년 전 조회 4,784
18년 전 조회 3,453
18년 전 조회 4,442
18년 전 조회 4,123
18년 전 조회 3,811
18년 전 조회 3,223
18년 전 조회 3,102
18년 전 조회 3,694
18년 전 조회 2,351
18년 전 조회 2,297
18년 전 조회 5,718
18년 전 조회 2,877
18년 전 조회 2,636
18년 전 조회 2,925
18년 전 조회 2,278