xieyj(원작)
<Html>
<머리>
<SCRIPT LANGUAGE="자바스크립트">
<!--
//정의 선택 원본
var oldValue,oldText;
//아래에서 onkeydown 작업을 선택하세요.
함수 catch_keydown(sel)
{
스위치(event.keyCode)
{
사례 13: //回车键
event.returnValue = 거짓;
부서지다;
사례 27: //Esc键
sel.options[sel.selectedIndex].text = oldText;
sel.options[sel.selectedIndex].value = oldValue;
event.returnValue = 거짓;
부서지다;
사례 8: //공공기
var s = sel.options[sel.selectedIndex].text;
s = s.substr(0,s.length-1);
if (sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].text)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
event.returnValue = 거짓;
부서지다;
}
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
//keypress에서 아래를 선택하세요.
함수 catch_press(sel){
if(sel.selectedIndex>=0){
var s = sel.options[sel.selectedIndex].text + String.fromCharCode(event.keyCode);
if (sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].text)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
event.returnValue = 거짓;
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
}
//선택하여 onfocus를 선택하세요.
함수 catch_focus(sel) {
oldText = sel.options[sel.selectedIndex].value;
oldValue = sel.options[sel.selectedIndex].value;
}
//恢复select下拉列表当前选中的值
함수 LoadSelect(obj,value)
{
for(var i=0; i< obj.options.length; i++)
if (obj.options[i].value == 값)
{
obj.selectedIndex = i;
부서지다;
}
}
//选择框鼠标上移时提示选择的内容 선택
selMouseOver(obj) 함수
{
(document.all.div_hint)와 함께
{
innerText = obj.options[obj.selectedIndex].text;
if (innerText.length > 0)
{
innerText = " " + innerText + " ";
style.display = "블록";
style.left = event.clientX + 16;
style.top = event.clientY;
}
}
}
//选择框鼠标移开时消失 선택
selMouseOut(obj) 함수
{
(document.all.div_hint)와 함께
{
style.display = "없음"
}
}
//-->
</SCRIPT>
</Head>
<본문>
<!--설명용-->
<select style='width:130px;z-index:-1' name='tmpSel' onmouseover=selMouseOver(this) onmouseout=selMouseOut(this) onkeydown=catch_keydown(this) onkeypress=catch_press(this) onfocus=catch_focus(this) )>
<옵션 값=''></option>
</select>
<!--提示块-->
<div id=div_hint style="font-size:12px;color:red;display:none;position:absolute; z-index:2; top:200; background-color: #F7F7F7; 레이어-배경-색상: # 0099FF; 테두리: 1px #9c9c9c solid;filter:Alpha(style=0,opacity=80,finishOpacity=100);"></div>
</Body>
</Html>