Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/10/2007, 16:17
Avatar de Gaby_Corr
Gaby_Corr
 
Fecha de Ingreso: junio-2005
Mensajes: 672
Antigüedad: 19 años, 6 meses
Puntos: 0
como pasar a una funcion el texto id="valor" de un input

bueno lo q ue quiero hacer es lo siguiente:

tengo un input:
Código PHP:
<input name="sistemas" type="text" id="sistemas" value="<%=Sistema%>" size="20" maxlength="20" onkeypress="onKeyPressed(event)" /> 
tengo esta funcion q detecta si dio un ENTER:
Código PHP:
function onKeyPressed(e){
    var 
keyPressed;
  if (
document.all
    {
        
keyPressed e.keyCode;
    } 
    else 
    {
        
keyPressed e.which;
    }
    
    if (
keyPressed == 13
    {       
Buscar(datobuscar);
    } 

y si es enter que vaya y ejecute la funcion buscar:

Código PHP:
function Buscar(dato) {
    if (!
enProceso && http) {
       var 
valor escape(document.getElementById(dato).value);
       var 
url "enviar.asp?datoabuscar="valor;
      
// alert(dato)
       
http.open("GET"urltrue);
       
http.onreadystatechange handleHttpResponse;
       
enProceso true;      
       
http.send(null);
       
// alert(url)
    
}

peroooo no se como enviarle el valor dato en buscar, siendo que dato
es el id del input, en este caso seria "sistemas" =S
__________________
" Recuerda , estas donde debes estar ..."