select change를 실현하고 중복 내용을 누르면 문제를 일으킬 수 없습니다

1702 단어 기능 구현
var id = document.getElementById("addquerstions");
id.onmousedown = function(){
        this.sindex = this.selectedIndex;
        this.selectedIndex = -1;
    }
    id.onmouseout = function() {
        var index = id.selectedIndex;
        if (index == -1) {
            this.selectedIndex = this.sindex;
        }
    }

좋은 웹페이지 즐겨찾기