////////객체 이벤트 정의// ///// 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()
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.