xieyj(原作)
<Html>
<Kepala>
<BAHASA SKRIP="JavaScript">
<!--
//定义 pilih 原值
var nilai lama,teks lama;
//pilih opsi onkeydown, pilih opsi onkeydown
fungsi catch_keydown(sel)
{
beralih (acara.Kode Kunci)
{
kasus 13: //回车键
acara.returnValue = false;
merusak;
kasus 27: //Esc键
sel.options[sel.selectedIndex].text = oldText;
sel.options[sel.selectedIndex].value = oldValue;
acara.returnValue = false;
merusak;
kasus 8: //空格健
var s = sel.options[sel.selectedIndex].teks;
s = s.substr(0,s.panjang-1);
if (sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].teks)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].teks=s;
}
acara.returnValue = false;
merusak;
}
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
//pilih下拉框的onkeypress事件,修改下拉框的值
fungsi catch_press(sel){
if(sel.selectedIndex>=0){
var s = sel.options[sel.selectedIndex].teks + String.fromCharCode(event.keyCode);
if (sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].teks)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].teks=s;
}
acara.returnValue = false;
if (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
}
//pilih opsi fokus pada fokus, opsi fokus
fungsi catch_focus(sel) {
oldText = sel.options[sel.selectedIndex].value;
oldValue = sel.options[sel.selectedIndex].nilai;
}
//恢复pilih下拉列表当前选中的值
fungsi LoadSelect(obj,nilai)
{
untuk (var i=0; i< obj.options.length; i++)
if (obj.options[i].nilai == nilai)
{
obj.selectedIndex = i;
merusak;
}
}
//pilih 选择框鼠标上移时提示选择的内容
fungsi selMouseOver(obj)
{
dengan (dokumen.all.div_hint)
{
innerText = obj.options[obj.selectedIndex].teks;
if (InnerText.length > 0)
{
innerText = " " + innerText + " ";
style.display = "blok";
style.kiri = acara.clientX + 16;
style.top = acara.klienY;
}
}
}
//pilih 选择框鼠标移开时消失
fungsi selMouseOut(obj)
{
dengan (dokumen.all.div_hint)
{
style.display = "tidak ada"
}
}
//-->
</SKRIP>
</Kepala>
<Tubuh>
<!--调用-->
<pilih gaya='lebar:130px;z-index:-1' name='tmpSel' onmouseover=selMouseOver(ini) onmouseout=selMouseOut(ini) onkeydown=catch_keydown(ini) onkeypress=catch_press(ini) onfocus=catch_focus(ini )>
<nilai opsi=''></option>
</pilih>
<!--提示块-->
<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; batas: 1 piksel #9c9c9c padat;filter:Alpha(style=0,opacity=80,finishOpacity=100);"></div>
</Tubuh>
</Html>