Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/03/2012, 15:09
Avatar de Naahuel
Naahuel
 
Fecha de Ingreso: marzo-2011
Ubicación: localhost
Mensajes: 796
Antigüedad: 13 años, 1 mes
Puntos: 192
Respuesta: función $.AJAX no recibe imagenes

Ejemplo: http://nahueljose.com.ar/ejemplos/ajax-test/

index.html
Código XML:
Ver original
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  5.     <script type="text/javascript">
  6.         $(function(){
  7.             $('.get-html').click(function(e){
  8.                 e.preventDefault();
  9.                 $.ajax({
  10.                     type: 'POST',
  11.                     url: $(this).attr('href'),
  12.                     success: function(resp){
  13.                         $('#comentario').html(resp);
  14.                     }
  15.                 });
  16.             });
  17.         });
  18.     </script>
  19.     <title>Prueba de ajax</title>
  20. </head>
  21. <body>
  22.     <p><a class="get-html" href="imagenes.html">Click ac&aacute; para obtener un poco de HTML con im&aacute;genes con AJAX</a></p>
  23.     <div id="comentario"></div>
  24. </body>
  25. </html>

imagenes.html

Código HTML:
Ver original
  1. <!doctype html>
  2.     <title>Imagenes</title>
  3. </head>
  4.     <div id="contenedor">          
  5.         <p>Lorem ipsum dolor sit amet, tempore Quaere allocutus ait regem consolatus dum animae tuae designaverant ut a civitas ex quae. Non potentia feugiat o sanguine instaret terrae in. Volentes mihi servitute meam contra me naufragus qui non potentiae. Audite deo hanc cuius ad nomine Stranguillio eam eos cui sed esse haec in. Navibus celebrent duo elitr qui enim.</p>
  6.         <p><img src="http://placehold.it/300x300" alt="Imagen Loca" title="Imagen Loca" /></p>
  7.         <p>Lorem ipsum dolor sit amet, tempore Quaere allocutus ait regem consolatus dum animae tuae designaverant ut a civitas ex quae. Non potentia feugiat o sanguine instaret terrae in. Volentes mihi servitute meam contra me naufragus qui non potentiae. Audite deo hanc cuius ad nomine Stranguillio eam eos cui sed esse haec in. Navibus celebrent duo elitr qui enim.</p>
  8.         <p><img src="http://placehold.it/200x200" alt="Imagen Loca" title="Imagen Loca" /></p>
  9.     </div>
  10. </body>
  11. </html>
__________________
nahueljose.com.ar