tengo un input:
Código PHP:
<input name="sistemas" type="text" id="sistemas" value="<%=Sistema%>" size="20" maxlength="20" onkeypress="onKeyPressed(event)" />
Código PHP:
function onKeyPressed(e){
var keyPressed;
if (document.all)
{
keyPressed = e.keyCode;
}
else
{
keyPressed = e.which;
}
if (keyPressed == 13)
{ Buscar(datobuscar);
}
}
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", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
// alert(url)
}
}
es el id del input, en este caso seria "sistemas" =S