29/01/2004, 13:17
|
| | | Fecha de Ingreso: diciembre-2003 Ubicación: Lima
Mensajes: 60
Antigüedad: 21 años, 1 mes Puntos: 0 | |
Hola, usa este script :
<script>
var tecla
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
document.onkeydown = keyDown
if (ns4) document.captureEvents(Event.KEYDOWN)
function keyDown(e) {
if (ns4) {
var nKey = e.which
tecla=nKey
}
if (ie4) {
var ieKey = event.keyCode
tecla=ieKey
}
if (tecla==13) {
alert('has pulsado enter')
/*aqui puede ir tu procedimiento*/
}
return false
}
</script>
__________________ ¿Que hay más aya del Universo? :pensando: |