xieyj(原作)
<Html>
<Cabeza>
<IDIOMA DE ESCRITURA="JavaScript">
<!--
//定义 seleccione 原值
var valorantiguo,textoantiguo;
//seleccione 下拉框的onkeydown事件,修改下拉框的值
función catch_keydown(sel)
{
cambiar(event.keyCode)
{
caso 13: //回车键
evento.returnValue = falso;
romper;
caso 27: //Esc键
sel.options[sel.selectedIndex].text = oldText;
sel.options[sel.selectedIndex].value = oldValue;
evento.returnValue = falso;
romper;
caso 8: //空格健
var s = sel.opciones[sel.selectedIndex].text;
s = s.substr(0,s.longitud-1);
if (sel.options[sel.selectedIndex].valor==sel.options[sel.selectedIndex].texto)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
evento.returnValue = falso;
romper;
}
si (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
//seleccione 下拉框的onkeypress事件,修改下拉框的值
función catch_press(sel){
if(sel.índice seleccionado>=0){
var s = sel.options[sel.selectedIndex].text + String.fromCharCode(event.keyCode);
if (sel.options[sel.selectedIndex].valor==sel.options[sel.selectedIndex].texto)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
evento.returnValue = falso;
si (!event.returnValue && sel.onchange)
sel.onchange(sel)
}
}
//seleccione下拉框的onfocus事件,保存下拉框原来的值
función catch_focus(sel) {
oldText = sel.options[sel.selectedIndex].value;
oldValue = sel.options[sel.selectedIndex].value;
}
//恢复seleccione下拉列表当前选中的值
función LoadSelect(obj,valor)
{
para (var i=0; i< obj.options.length; i++)
si (obj.opciones[i].valor == valor)
{
obj.selectedIndex = i;
romper;
}
}
//seleccione 选择框鼠标上移时提示选择的内容
función selMouseOver(obj)
{
con (document.all.div_hint)
{
texto interno = obj.opciones[obj.selectedIndex].text;
si (textointerior.longitud > 0)
{
TextoInterior = " " + TextoInterior + " ";
estilo.display = "bloque";
estilo.izquierda = evento.clientX + 16;
estilo.top = evento.clienteY;
}
}
}
//seleccione 选择框鼠标移开时消失
función selMouseOut(obj)
{
con (document.all.div_hint)
{
estilo.display = "ninguno"
}
}
//-->
</SCRIPT>
</cabeza>
<Cuerpo>
<!--调用-->
<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 )>
<valor de opción=''></opción>
</select>
<!--提示块-->
<div id=div_hint style="font-size:12px;color:rojo;display:none;posición:absoluta; z-index:2; top:200;color de fondo: #F7F7F7; color de fondo de capa: # 0099FF; borde: 1px #9c9c9c sólido;filtro:Alfa(estilo=0,opacidad=80,finishOpacity=100);"></div>
</Cuerpo>
</Html>