b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3917

<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,782
18년 전 조회 3,451
18년 전 조회 2,663
18년 전 조회 3,021
18년 전 조회 6,045
18년 전 조회 2,804
18년 전 조회 2,185
18년 전 조회 2,823
18년 전 조회 1,646
18년 전 조회 9,967
18년 전 조회 4,641
18년 전 조회 3,461
18년 전 조회 1,992
18년 전 조회 3,780
18년 전 조회 2,466
18년 전 조회 3,911
18년 전 조회 5,342
18년 전 조회 3,998
18년 전 조회 2,851
18년 전 조회 3,130
18년 전 조회 2,623
18년 전 조회 2,952
18년 전 조회 2,078
18년 전 조회 3,625
18년 전 조회 2,308
18년 전 조회 2,443
18년 전 조회 2,253
18년 전 조회 3,236
18년 전 조회 2,168
18년 전 조회 2,840
18년 전 조회 4,028
18년 전 조회 4,745
18년 전 조회 2,543
18년 전 조회 3,031
18년 전 조회 4,800
18년 전 조회 2,856
18년 전 조회 2,042
18년 전 조회 3,492
18년 전 조회 3,298
18년 전 조회 4,024
18년 전 조회 2,353
18년 전 조회 2,511
18년 전 조회 1만
18년 전 조회 3,685
18년 전 조회 3,477
18년 전 조회 3,358
18년 전 조회 2,981
18년 전 조회 4,318
18년 전 조회 5,664
18년 전 조회 3,918
18년 전 조회 3,369
18년 전 조회 3,791
18년 전 조회 2,438
18년 전 조회 2,861
18년 전 조회 4,105
18년 전 조회 3,032
18년 전 조회 4,526
18년 전 조회 2,250
18년 전 조회 2,691
18년 전 조회 2,594
18년 전 조회 3,962
18년 전 조회 4,020
18년 전 조회 2,754
18년 전 조회 2,832
18년 전 조회 3,135
18년 전 조회 2,981
18년 전 조회 2,199
18년 전 조회 2,352
18년 전 조회 5,009
18년 전 조회 4,358
18년 전 조회 2,990
18년 전 조회 2,527
18년 전 조회 3,048
18년 전 조회 2,503
18년 전 조회 3,688
18년 전 조회 2,351
18년 전 조회 2,137
18년 전 조회 2,004
18년 전 조회 1,824
18년 전 조회 3,395
18년 전 조회 4,728
18년 전 조회 5,005
18년 전 조회 2,304
18년 전 조회 3,762
18년 전 조회 3,465
18년 전 조회 4,755
18년 전 조회 3,413
18년 전 조회 4,406
18년 전 조회 4,083
18년 전 조회 3,782
18년 전 조회 3,189
18년 전 조회 3,069
18년 전 조회 3,656
18년 전 조회 2,315
18년 전 조회 2,252
18년 전 조회 5,680
18년 전 조회 2,843
18년 전 조회 2,597
18년 전 조회 2,889
18년 전 조회 2,238