////////객체 이벤트 정의// ///// combox.prototype.find=function(){ /*입력 상자의 값을 검색하면 드롭다운 상자가 자동으로 배치됩니다.*/ var inputbox=document .getElementsByName("combox_" this.name)[0] with(this.select){ for(i=0;iif(options[i]. text.indexOf(inputbox.value)==0){ selectedIndex=i this.change() break } }
combox.prototype.change=function(){ / *드롭다운 상자의 onchange 이벤트 정의*/ var inputbox=document.getElementsByName("combox_" this.name)[0] inputbox.value=this.select.options[this.select.selectedIndex].text ; with(inputbox){select();focus()} } ////// //객체 이벤트 종료/////// /*공개 위치 지정 함수(컨트롤의 절대 좌표 가져오기)*/ function getL(e){ var l=e.offsetLeft ; while(e=e.offsetParent)l =e.offsetLeft; return l } function getT(e){ var t=e.offsetTop (e=e.offsetParent)t =e.offsetTop; return t } /*End*/ ; var a=new 콤보x("a","fason") a.init()