xieyj(原作)
<Html>
<頭>
<スクリプト言語="JavaScript">
<!--
//決定 原值を選択
var oldValue,oldText;
//下拉框のonkeydownイベントを選択、下拉框の修正
関数 catch_keydown(sel)
{
スイッチ(イベント.キーコード)
{
case 13: //回车键
イベント.returnValue = false;
壊す;
ケース 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(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 = イベント.clientX + 16;
スタイル.トップ = イベント.クライアントY;
}
}
}
//选择框鼠标移开時消失を選択
関数 selMouseOut(obj)
{
(document.all.div_hint) を使用
{
style.display = "なし"
}
}
//-->
</スクリプト>
</頭>
<本体>
<!--调用-->
<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) )>
<オプション値=''></オプション>
</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>