b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3981

<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,845
18년 전 조회 3,510
18년 전 조회 2,712
18년 전 조회 3,086
18년 전 조회 6,104
18년 전 조회 2,860
18년 전 조회 2,237
18년 전 조회 2,882
18년 전 조회 1,709
18년 전 조회 1만
18년 전 조회 4,708
18년 전 조회 3,519
18년 전 조회 2,054
18년 전 조회 3,835
18년 전 조회 2,514
18년 전 조회 3,967
18년 전 조회 5,394
18년 전 조회 4,060
18년 전 조회 2,918
18년 전 조회 3,191
18년 전 조회 2,693
18년 전 조회 3,015
18년 전 조회 2,135
18년 전 조회 3,679
18년 전 조회 2,366
18년 전 조회 2,501
18년 전 조회 2,313
18년 전 조회 3,295
18년 전 조회 2,228
18년 전 조회 2,904
18년 전 조회 4,090
18년 전 조회 4,812
18년 전 조회 2,605
18년 전 조회 3,092
18년 전 조회 4,852
18년 전 조회 2,925
18년 전 조회 2,099
18년 전 조회 3,555
18년 전 조회 3,361
18년 전 조회 4,082
18년 전 조회 2,421
18년 전 조회 2,571
18년 전 조회 1만
18년 전 조회 3,745
18년 전 조회 3,540
18년 전 조회 3,416
18년 전 조회 3,039
18년 전 조회 4,390
18년 전 조회 5,735
18년 전 조회 3,982
18년 전 조회 3,429
18년 전 조회 3,848
18년 전 조회 2,492
18년 전 조회 2,918
18년 전 조회 4,166
18년 전 조회 3,090
18년 전 조회 4,595
18년 전 조회 2,316
18년 전 조회 2,745
18년 전 조회 2,653
18년 전 조회 4,026
18년 전 조회 4,081
18년 전 조회 2,812
18년 전 조회 2,894
18년 전 조회 3,201
18년 전 조회 3,035
18년 전 조회 2,257
18년 전 조회 2,424
18년 전 조회 5,066
18년 전 조회 4,422
18년 전 조회 3,048
18년 전 조회 2,596
18년 전 조회 3,101
18년 전 조회 2,574
18년 전 조회 3,745
18년 전 조회 2,411
18년 전 조회 2,192
18년 전 조회 2,065
18년 전 조회 1,887
18년 전 조회 3,449
18년 전 조회 4,789
18년 전 조회 5,055
18년 전 조회 2,352
18년 전 조회 3,818
18년 전 조회 3,525
18년 전 조회 4,806
18년 전 조회 3,477
18년 전 조회 4,463
18년 전 조회 4,144
18년 전 조회 3,835
18년 전 조회 3,249
18년 전 조회 3,132
18년 전 조회 3,715
18년 전 조회 2,377
18년 전 조회 2,324
18년 전 조회 5,741
18년 전 조회 2,896
18년 전 조회 2,660
18년 전 조회 2,942
18년 전 조회 2,300