b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3997

<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,859
18년 전 조회 3,525
18년 전 조회 2,735
18년 전 조회 3,101
18년 전 조회 6,117
18년 전 조회 2,885
18년 전 조회 2,252
18년 전 조회 2,897
18년 전 조회 1,726
18년 전 조회 1만
18년 전 조회 4,725
18년 전 조회 3,538
18년 전 조회 2,072
18년 전 조회 3,846
18년 전 조회 2,531
18년 전 조회 3,986
18년 전 조회 5,407
18년 전 조회 4,075
18년 전 조회 2,930
18년 전 조회 3,205
18년 전 조회 2,706
18년 전 조회 3,034
18년 전 조회 2,146
18년 전 조회 3,695
18년 전 조회 2,382
18년 전 조회 2,520
18년 전 조회 2,328
18년 전 조회 3,309
18년 전 조회 2,250
18년 전 조회 2,932
18년 전 조회 4,106
18년 전 조회 4,825
18년 전 조회 2,630
18년 전 조회 3,106
18년 전 조회 4,868
18년 전 조회 2,943
18년 전 조회 2,120
18년 전 조회 3,572
18년 전 조회 3,376
18년 전 조회 4,101
18년 전 조회 2,435
18년 전 조회 2,592
18년 전 조회 1만
18년 전 조회 3,760
18년 전 조회 3,554
18년 전 조회 3,430
18년 전 조회 3,052
18년 전 조회 4,402
18년 전 조회 5,751
18년 전 조회 3,998
18년 전 조회 3,440
18년 전 조회 3,866
18년 전 조회 2,510
18년 전 조회 2,935
18년 전 조회 4,178
18년 전 조회 3,107
18년 전 조회 4,611
18년 전 조회 2,331
18년 전 조회 2,753
18년 전 조회 2,663
18년 전 조회 4,040
18년 전 조회 4,092
18년 전 조회 2,828
18년 전 조회 2,907
18년 전 조회 3,222
18년 전 조회 3,054
18년 전 조회 2,272
18년 전 조회 2,434
18년 전 조회 5,077
18년 전 조회 4,433
18년 전 조회 3,058
18년 전 조회 2,619
18년 전 조회 3,114
18년 전 조회 2,590
18년 전 조회 3,763
18년 전 조회 2,426
18년 전 조회 2,207
18년 전 조회 2,076
18년 전 조회 1,900
18년 전 조회 3,465
18년 전 조회 4,802
18년 전 조회 5,068
18년 전 조회 2,366
18년 전 조회 3,831
18년 전 조회 3,540
18년 전 조회 4,815
18년 전 조회 3,486
18년 전 조회 4,480
18년 전 조회 4,157
18년 전 조회 3,848
18년 전 조회 3,269
18년 전 조회 3,140
18년 전 조회 3,733
18년 전 조회 2,387
18년 전 조회 2,335
18년 전 조회 5,761
18년 전 조회 2,907
18년 전 조회 2,671
18년 전 조회 2,956
18년 전 조회 2,323