No sé si debo enviar este mensaje aquí, porque no es sólo sobre Javascript sino tb sobre Ajax.
Bueno, esta es mi duda:
Tengo la siguiente función:
Código HTML:
<script type="text/javascript"> function showUser(str) { if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { [COLOR="Red"] document.getElementById("txtHint").innerHTML=xmlhttp.responseText; }[/COLOR] } [COLOR="Blue"]xmlhttp.open("GET","getuser.php?q="+str,true); xmlhttp.send();[/COLOR] } </script>
Me gustaría poder traer una variable también, sin necesitar de mostrar su valor.
Igual que mando una con la función marcada en azul, ¿no puedo también traer una variable?
¡Muchísimas gracias!