b

DOM 이용 select box 옵션추가삭제

· 18년 전 · 3916

<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,779
18년 전 조회 3,450
18년 전 조회 2,662
18년 전 조회 3,020
18년 전 조회 6,045
18년 전 조회 2,804
18년 전 조회 2,184
18년 전 조회 2,823
18년 전 조회 1,646
18년 전 조회 9,965
18년 전 조회 4,641
18년 전 조회 3,461
18년 전 조회 1,992
18년 전 조회 3,779
18년 전 조회 2,465
18년 전 조회 3,908
18년 전 조회 5,342
18년 전 조회 3,997
18년 전 조회 2,850
18년 전 조회 3,130
18년 전 조회 2,623
18년 전 조회 2,951
18년 전 조회 2,078
18년 전 조회 3,622
18년 전 조회 2,308
18년 전 조회 2,443
18년 전 조회 2,252
18년 전 조회 3,235
18년 전 조회 2,168
18년 전 조회 2,840
18년 전 조회 4,028
18년 전 조회 4,744
18년 전 조회 2,541
18년 전 조회 3,030
18년 전 조회 4,800
18년 전 조회 2,856
18년 전 조회 2,041
18년 전 조회 3,490
18년 전 조회 3,298
18년 전 조회 4,023
18년 전 조회 2,353
18년 전 조회 2,510
18년 전 조회 1만
18년 전 조회 3,685
18년 전 조회 3,476
18년 전 조회 3,356
18년 전 조회 2,980
18년 전 조회 4,317
18년 전 조회 5,663
18년 전 조회 3,917
18년 전 조회 3,369
18년 전 조회 3,790
18년 전 조회 2,437
18년 전 조회 2,860
18년 전 조회 4,105
18년 전 조회 3,030
18년 전 조회 4,526
18년 전 조회 2,249
18년 전 조회 2,690
18년 전 조회 2,594
18년 전 조회 3,961
18년 전 조회 4,020
18년 전 조회 2,754
18년 전 조회 2,831
18년 전 조회 3,135
18년 전 조회 2,979
18년 전 조회 2,198
18년 전 조회 2,351
18년 전 조회 5,007
18년 전 조회 4,357
18년 전 조회 2,989
18년 전 조회 2,527
18년 전 조회 3,048
18년 전 조회 2,503
18년 전 조회 3,687
18년 전 조회 2,350
18년 전 조회 2,137
18년 전 조회 2,004
18년 전 조회 1,823
18년 전 조회 3,395
18년 전 조회 4,727
18년 전 조회 5,004
18년 전 조회 2,304
18년 전 조회 3,762
18년 전 조회 3,465
18년 전 조회 4,755
18년 전 조회 3,411
18년 전 조회 4,406
18년 전 조회 4,082
18년 전 조회 3,782
18년 전 조회 3,188
18년 전 조회 3,067
18년 전 조회 3,655
18년 전 조회 2,314
18년 전 조회 2,252
18년 전 조회 5,680
18년 전 조회 2,843
18년 전 조회 2,596
18년 전 조회 2,889
18년 전 조회 2,238