xieyj(原作)
<Html>
<頭部>
<腳本語言=“JavaScript”>
<!--
//定義原選擇值
var 舊值,舊文;
//選擇下拉方塊的onkeydown事件,修改下拉方塊的值
函數 catch_keydown(sel)
{
開關(事件.keyCode)
{
case 13: //回車鍵
事件.returnValue = false;
休息;
case 27: //Esc鍵
sel.options[sel.selectedIndex].text = oldText;
sel.options[sel.selectedIndex].value = oldValue;
事件.returnValue = false;
休息;
case 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;
}
事件.returnValue = false;
休息;
}
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
//選擇下拉方塊的onkeypress事件,修改下拉方塊的值
函數 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;
}
事件.returnValue = false;
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
}
//選擇下拉方塊的onfocus事件,儲存下拉方塊原來的值
函數 catch_focus(sel) {
oldText = sel.options[sel.selectedIndex].value;
oldValue = sel.options[sel.selectedIndex].value;
}
//恢復選擇下拉清單目前選取的值
函數 LoadSelect(物件,值)
{
for (var i=0; i< obj.options.length; i++)
if (obj.options[i].value == value)
{
obj.selectedIndex = i;
休息;
}
}
//select 選擇框滑鼠上移時提示的內容
函數 selMouseOver(obj)
{
與 (document.all.div_hint)
{
innerText = obj.options[obj.selectedIndex].text;
if (innerText.length > 0)
{
內部文本=“”+內部文本+“”;
style.display = "區塊";
style.left = event.clientX + 16;
style.top = event.clientY;
}
}
}
//選擇選擇框滑鼠移開時消失
函數 selMouseOut(obj)
{
與 (document.all.div_hint)
{
樣式.display =“無”
}
}
//-->
</腳本>
</頭>
<身體>
<!--呼叫-->
<select style='width:130px;z-index:-1' name='tmpSel' onmouseover=selMouseOver(this) onmouseout=selMouseOut(this) onkeydown=catch_keydown(this) onkeypress=catch_press(this) onkeydown=catch_keydown(this) onkeypress=catch_press(this) onfocus=catch_catch=catch_aatch_this. ) )>
<選項值=''></選項>
</select>
<!-- 提示區塊-->
<div id=div_hint style="font-size:12px;color:red;display:none;position:absolute;z-index:2;top:200;background-color:#F7F7F7;layer-background-color:# 0099FF; 邊框:1px #9c9c9c 固體;濾網:Alpha(style=0,opacity=80,finishOpacity=100);"></div>
</正文>
</html>