b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3941

<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,808
18년 전 조회 3,473
18년 전 조회 2,681
18년 전 조회 3,045
18년 전 조회 6,070
18년 전 조회 2,821
18년 전 조회 2,205
18년 전 조회 2,842
18년 전 조회 1,674
18년 전 조회 9,991
18년 전 조회 4,662
18년 전 조회 3,488
18년 전 조회 2,017
18년 전 조회 3,802
18년 전 조회 2,485
18년 전 조회 3,937
18년 전 조회 5,361
18년 전 조회 4,015
18년 전 조회 2,876
18년 전 조회 3,159
18년 전 조회 2,642
18년 전 조회 2,980
18년 전 조회 2,100
18년 전 조회 3,643
18년 전 조회 2,335
18년 전 조회 2,465
18년 전 조회 2,280
18년 전 조회 3,253
18년 전 조회 2,193
18년 전 조회 2,862
18년 전 조회 4,051
18년 전 조회 4,773
18년 전 조회 2,564
18년 전 조회 3,053
18년 전 조회 4,821
18년 전 조회 2,879
18년 전 조회 2,053
18년 전 조회 3,521
18년 전 조회 3,325
18년 전 조회 4,041
18년 전 조회 2,376
18년 전 조회 2,540
18년 전 조회 1만
18년 전 조회 3,713
18년 전 조회 3,500
18년 전 조회 3,382
18년 전 조회 3,004
18년 전 조회 4,350
18년 전 조회 5,687
18년 전 조회 3,942
18년 전 조회 3,391
18년 전 조회 3,811
18년 전 조회 2,458
18년 전 조회 2,885
18년 전 조회 4,129
18년 전 조회 3,053
18년 전 조회 4,550
18년 전 조회 2,274
18년 전 조회 2,709
18년 전 조회 2,622
18년 전 조회 3,985
18년 전 조회 4,045
18년 전 조회 2,772
18년 전 조회 2,855
18년 전 조회 3,162
18년 전 조회 3,002
18년 전 조회 2,223
18년 전 조회 2,378
18년 전 조회 5,032
18년 전 조회 4,378
18년 전 조회 3,012
18년 전 조회 2,554
18년 전 조회 3,071
18년 전 조회 2,534
18년 전 조회 3,712
18년 전 조회 2,373
18년 전 조회 2,159
18년 전 조회 2,025
18년 전 조회 1,851
18년 전 조회 3,414
18년 전 조회 4,752
18년 전 조회 5,021
18년 전 조회 2,321
18년 전 조회 3,786
18년 전 조회 3,488
18년 전 조회 4,775
18년 전 조회 3,437
18년 전 조회 4,430
18년 전 조회 4,112
18년 전 조회 3,800
18년 전 조회 3,210
18년 전 조회 3,092
18년 전 조회 3,678
18년 전 조회 2,332
18년 전 조회 2,278
18년 전 조회 5,704
18년 전 조회 2,866
18년 전 조회 2,623
18년 전 조회 2,911
18년 전 조회 2,262