Código HTML:
<html> <head> <title>Untitled Document</title> <script src="jquery-1.4.4.min.js"></script> </head> <body> <script> var des; $(document).ready(function(){ //$("#temp").css("display", "none"); $("#enlaceajax").click(function(evento){ evento.preventDefault(); $("#temp").load("recibe-parametros.php", {nombre: "Pepe", edad: 45}, function(){ des = $("#temp").html; alert(des); }); }); }) </script> <a href="#" id="enlaceajax">Haz clic!</a> <br> <div id="temp"></div> </body> </html>
Código PHP:
Recibido el siguiente dato:
<br>
Nombre: <?php echo $_POST["nombre"];?>
<br>
Edad: <?php echo $_POST["edad"];?>